diff options
author | Axel Huebl <axel.huebl@plasma.ninja> | 2019-09-09 16:41:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-09 16:41:04 -0700 |
commit | 0d270e0d2a3b45475073f9e0fa27fa16fb434217 (patch) | |
tree | 4eab1844036047cfc33f6bb106fdfd04583ac89a /share | |
parent | 221acadc7d08ec199c45bc07a3d51d812c87ee76 (diff) | |
download | spack-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-x | share/spack/packages/build-image.sh | 2 |
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 |