Build image without caching

This commit is contained in:
Jan Dittberner 2021-01-05 10:49:51 +01:00
parent 39ba0e660a
commit 8f164a541a
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ set -e
for dist in jessie_php5 stretch_php7 buster_php7 bullseye_php7; do
docker build --pull -t gnuviech/${dist}-base ${dist} -f ${dist}/Dockerfile-base
docker build -t gnuviech/${dist} ${dist} -f ${dist}/Dockerfile
docker build --no-cache -t gnuviech/${dist} ${dist} -f ${dist}/Dockerfile
docker build -t gnuviech/${dist}-mysql ${dist} -f ${dist}/Dockerfile-mysql
docker build -t gnuviech/${dist}-pgsql ${dist} -f ${dist}/Dockerfile-pgsql
done