Compare commits
16 Commits
master
...
ontheroad-
Author | SHA1 | Date |
---|---|---|
dcore94 | 49b014993b | |
dcore94 | cb31c5e245 | |
dcore94 | 182a2ed8a4 | |
dcore94 | 0ba4f1c014 | |
dcore94 | cdf92bfd4e | |
dcore94 | e97d7bc85c | |
dcore94 | 3d38b88b19 | |
dcore94 | 8a874a6284 | |
dcore94 | 240def2b26 | |
dcore94 | 21f8a3b50a | |
dcore94 | e8d9de839e | |
dcore94 | a75fe27468 | |
dcore94 | 21d9d8bf6d | |
dcore94 | 91212426d5 | |
dcore94 | 4e6287d02e | |
dcore94 | 0938a48e7b |
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"id":"7ed75313-6b78-4f35-ad77-01442ff962db",
|
||||||
|
"active":true,
|
||||||
|
"name":"focal-fossa-cuda-py3",
|
||||||
|
"description":"An LXD runtime based on Ubuntu focal fossa 20.04 for running nvidia based GPU code and python3 applications",
|
||||||
|
"keywords":[
|
||||||
|
"lxd",
|
||||||
|
"linux",
|
||||||
|
"ubuntu",
|
||||||
|
"focal-fossa",
|
||||||
|
"bash",
|
||||||
|
"nvidia",
|
||||||
|
"GPU",
|
||||||
|
"python",
|
||||||
|
"python3"
|
||||||
|
],
|
||||||
|
"responsible":{
|
||||||
|
"name":"Marco Lettere",
|
||||||
|
"email":"m.lettere@gmail.com"
|
||||||
|
},
|
||||||
|
"type":"lxd",
|
||||||
|
"image":"focal-fossa-cuda-py3"
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
"builders": [
|
||||||
|
{
|
||||||
|
"type": "lxd",
|
||||||
|
"name": "{{ user `name`}}",
|
||||||
|
"image": "focal-fossa-gpu",
|
||||||
|
"output_image": "{{ user `name` }}",
|
||||||
|
"publish_properties": {
|
||||||
|
"description": "{{ user `description`}}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"provisioners": [
|
||||||
|
{
|
||||||
|
"type" : "shell",
|
||||||
|
"inline" : [
|
||||||
|
"apt-get install -y python3-pip"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"post-processors": []
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"id":"84127ecc-6892-4c63-8860-16a4f491fe4c",
|
||||||
|
"active":true,
|
||||||
|
"name":"focal-fossa-gpu",
|
||||||
|
"description":"An LXD runtime based on Ubuntu focal fossa 20.04 for running nvidia based GPU code",
|
||||||
|
"keywords":[
|
||||||
|
"lxd",
|
||||||
|
"linux",
|
||||||
|
"ubuntu",
|
||||||
|
"focal-fossa",
|
||||||
|
"bash",
|
||||||
|
"nvidia",
|
||||||
|
"GPU"
|
||||||
|
],
|
||||||
|
"responsible":{
|
||||||
|
"name":"Marco Lettere",
|
||||||
|
"email":"m.lettere@gmail.com"
|
||||||
|
},
|
||||||
|
"type":"lxd",
|
||||||
|
"image":"focal-fossa-gpu"
|
||||||
|
}
|
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
"builders": [
|
||||||
|
{
|
||||||
|
"type": "lxd",
|
||||||
|
"name": "{{ user `name`}}",
|
||||||
|
"image": "ubuntu:20.04",
|
||||||
|
"output_image": "{{ user `name` }}",
|
||||||
|
"publish_properties": {
|
||||||
|
"description": "{{ user `description`}}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"provisioners": [
|
||||||
|
{
|
||||||
|
"type" : "shell",
|
||||||
|
"inline" : [
|
||||||
|
"apt-get update",
|
||||||
|
"apt-get --yes install build-essential",
|
||||||
|
"apt-get --yes install nvidia-cuda-toolkit"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"post-processors": []
|
||||||
|
}
|
|
@ -7,8 +7,8 @@
|
||||||
"output_image": "{{ user `name` }}",
|
"output_image": "{{ user `name` }}",
|
||||||
"publish_properties": {
|
"publish_properties": {
|
||||||
"description": "{{ user `description`}}"
|
"description": "{{ user `description`}}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"provisioners": [],
|
"provisioners": [],
|
||||||
"post-processors": []
|
"post-processors": []
|
||||||
|
|
Loading…
Reference in New Issue