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

25 lines
506 B
JSON
Raw Permalink Normal View History

2022-08-04 11:06:16 +02:00
{
"builders": [
{
"type": "lxd",
"name": "{{ user `name`}}",
"image": "ubuntu:20.04",
2022-09-13 16:50:38 +02:00
"output_image": "{{ user `name` }}",
2022-08-04 11:06:16 +02:00
"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": []
}