summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorAxel Huebl <axel.huebl@plasma.ninja>2019-09-09 16:41:04 -0700
committerGitHub <noreply@github.com>2019-09-09 16:41:04 -0700
commit0d270e0d2a3b45475073f9e0fa27fa16fb434217 (patch)
tree4eab1844036047cfc33f6bb106fdfd04583ac89a /share
parent221acadc7d08ec199c45bc07a3d51d812c87ee76 (diff)
downloadspack-0d270e0d2a3b45475073f9e0fa27fa16fb434217.tar.gz
spack-0d270e0d2a3b45475073f9e0fa27fa16fb434217.tar.bz2
spack-0d270e0d2a3b45475073f9e0fa27fa16fb434217.tar.xz
spack-0d270e0d2a3b45475073f9e0fa27fa16fb434217.zip
packages service: fix docker build (#12773)
The build instructions I cloned from did not work ;)
Diffstat (limited to 'share')
-rwxr-xr-xshare/spack/packages/build-image.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/spack/packages/build-image.sh b/share/spack/packages/build-image.sh
index c068d11715..adde5842ab 100755
--- a/share/spack/packages/build-image.sh
+++ b/share/spack/packages/build-image.sh
@@ -13,5 +13,5 @@ export IMAGE="spack/packages.spack.io:latest"
if [ "$script" '=' 'push-image.sh' ] ; then
docker push "${IMAGE}"
else
- docker build -f -t "${IMAGE}" .
+ docker build --no-cache --force-rm -t "${IMAGE}" .
fi