Docker: never cache the base image when rebuilding

This commit is contained in:
Sybren A. Stüvel 2018-01-05 14:53:40 +01:00
parent ab11f98331
commit 4891803552

View File

@ -1,3 +1,4 @@
#!/usr/bin/env bash
exec docker build "$@" -t pillar_base -f base.docker .
# Uses --no-cache to always get the latest upstream (security) upgrades.
exec docker build --no-cache "$@" -t pillar_base -f base.docker .