desktop-environment/packer/packer.json
Jackson Delahunt 9ca59681b9 Revert "no-paaacker"
This reverts commit ea0d30219b.
2019-02-26 10:28:50 +11:00

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"
]
}
]
}