diff --git a/lib/spack/spack/container/images.json b/lib/spack/spack/container/images.json index ecd911815d4..5aac5aabee9 100644 --- a/lib/spack/spack/container/images.json +++ b/lib/spack/spack/container/images.json @@ -8,7 +8,10 @@ "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", + "0.14.3": "0.14.3" } }, "ubuntu:16.04": { @@ -20,7 +23,10 @@ "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", + "0.14.3": "0.14.3" } }, "centos:7": { @@ -32,7 +38,10 @@ "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", + "0.14.3": "0.14.3" } }, "centos:6": { @@ -44,7 +53,14 @@ "build_tags": { "develop": "latest", "0.14": "0.14", +<<<<<<< HEAD "0.14.0": "0.14.0" +======= + "0.14.0": "0.14.0", + "0.14.1": "0.14.1", + "0.14.2": "0.14.2", + "0.14.3": "0.14.3" +>>>>>>> 8f208b17e2... spack containerize: allow 0.14.3 tag for next release } } -} \ No newline at end of file +} diff --git a/lib/spack/spack/schema/container.py b/lib/spack/spack/schema/container.py index cb1ed8d63ac..65e9f1bad86 100644 --- a/lib/spack/spack/schema/container.py +++ b/lib/spack/spack/schema/container.py @@ -29,7 +29,10 @@ }, 'spack': { 'type': 'string', - 'enum': ['develop', '0.14', '0.14.0'] + 'enum': [ + 'develop', + '0.14', '0.14.0', '0.14.1', '0.14.2', '0.14.3' + ] } }, 'required': ['image', 'spack']