summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/container/images.json16
-rw-r--r--lib/spack/spack/schema/container.py5
2 files changed, 16 insertions, 5 deletions
diff --git a/lib/spack/spack/container/images.json b/lib/spack/spack/container/images.json
index ecd911815d..c7226c4f59 100644
--- a/lib/spack/spack/container/images.json
+++ b/lib/spack/spack/container/images.json
@@ -8,7 +8,9 @@
"build_tags": {
"develop": "latest",
"0.14": "0.14",
- "0.14.0": "0.14.0"
+ "0.14.0": "0.14.0",
+ "0.14.1": "0.14.1",
+ "0.14.2": "0.14.2"
}
},
"ubuntu:16.04": {
@@ -20,7 +22,9 @@
"build_tags": {
"develop": "latest",
"0.14": "0.14",
- "0.14.0": "0.14.0"
+ "0.14.0": "0.14.0",
+ "0.14.1": "0.14.1",
+ "0.14.2": "0.14.2"
}
},
"centos:7": {
@@ -32,7 +36,9 @@
"build_tags": {
"develop": "latest",
"0.14": "0.14",
- "0.14.0": "0.14.0"
+ "0.14.0": "0.14.0",
+ "0.14.1": "0.14.1",
+ "0.14.2": "0.14.2"
}
},
"centos:6": {
@@ -44,7 +50,9 @@
"build_tags": {
"develop": "latest",
"0.14": "0.14",
- "0.14.0": "0.14.0"
+ "0.14.0": "0.14.0",
+ "0.14.1": "0.14.1",
+ "0.14.2": "0.14.2"
}
}
} \ No newline at end of file
diff --git a/lib/spack/spack/schema/container.py b/lib/spack/spack/schema/container.py
index cb1ed8d63a..fcfc398c83 100644
--- a/lib/spack/spack/schema/container.py
+++ b/lib/spack/spack/schema/container.py
@@ -29,7 +29,10 @@ container_schema = {
},
'spack': {
'type': 'string',
- 'enum': ['develop', '0.14', '0.14.0']
+ 'enum': [
+ 'develop',
+ '0.14', '0.14.0', '0.14.1', '0.14.2'
+ ]
}
},
'required': ['image', 'spack']