mirror of
https://github.com/kingomarnajjar/desktop-environment.git
synced 2026-07-26 06:37:21 +10:00
27 lines
643 B
JSON
27 lines
643 B
JSON
{
|
|
"builders": [
|
|
{
|
|
"type": "googlecompute",
|
|
"account_file": "/stemn/credentials/development-environment.json",
|
|
"source_image_family": "ubuntu-minimal-1810",
|
|
"project_id": "stemnapp",
|
|
"zone": "australia-southeast1-a",
|
|
"instance_name": "packer-development-environment-{{timestamp}}",
|
|
"image_name": "development-environment",
|
|
"ssh_username": "root"
|
|
}
|
|
],
|
|
"provisioners": [
|
|
{
|
|
"type": "file",
|
|
"source": "../docker/scripts/bootstrap.sh",
|
|
"destination": "/bootstrap.sh"
|
|
},
|
|
{
|
|
"type": "shell",
|
|
"inline": [
|
|
"/bootstrap.sh"
|
|
]
|
|
}
|
|
]
|
|
}
|