ccp.runtimes.lxd/focal-fossa-gpu/packer.json

25 lines
520 B
JSON
Raw Normal View History

2022-08-04 11:06:16 +02:00
{
"builders": [
{
"type": "lxd",
"name": "{{ user `name`}}",
"image": "ubuntu:20.04",
"output_image": "{{ user `name` }}:{{user `id`}}",
"publish_properties": {
"description": "{{ user `description`}}"
}
}
],
"provisioners": [
2022-08-04 13:25:32 +02:00
{
2022-08-04 11:06:16 +02:00
"type" : "shell",
"inline" : [
"apt-get update",
"apt-get --yes install build-essential",
"apt-get --yes install nvidia-cuda-toolkit"
]
2022-08-04 13:25:32 +02:00
}
2022-08-04 11:06:16 +02:00
],
"post-processors": []
}