ccp.runtimes.lxd/focal-fossa-py3-devel/packer.json

25 lines
516 B
JSON

{
"builders": [
{
"type": "lxd",
"name": "{{ user `name`}}",
"image": "ubuntu:20.04",
"output_image": "{{ user `name` }}",
"publish_properties": {
"description": "{{ user `description`}}"
}
}
],
"provisioners": [
{
"type" : "shell",
"inline" : [
"/usr/bin/cloud-init status --wait",
"apt-get update",
"apt-get install -y python3-pip"
]
}
],
"post-processors": []
}