Skip to content

Commit 17df51c

Browse files
authored
BIGTOP-3996: Force a clean build of toolchain images (#1178)
1 parent 6974a24 commit 17df51c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker/bigtop-puppet/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ case "${OS}-${VERSION}" in
6363
;;
6464
esac
6565

66-
docker build -t bigtop/puppet:${PREFIX}-${OS}-${VERSION}${ARCH} .
66+
docker build -t --no-cache bigtop/puppet:${PREFIX}-${OS}-${VERSION}${ARCH} .
6767
rm -f Dockerfile puppetize.sh

docker/bigtop-slaves/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ fi
8989
sed -e "s|PREFIX|${PREFIX}|;s|OS|${OS}|;s|VERSION|${VERSION}|" Dockerfile.template | \
9090
sed -e "s|PUPPET_MODULES|${PUPPET_MODULES}|;s|UPDATE_SOURCE|${UPDATE_SOURCE}|" > Dockerfile
9191

92-
docker build ${NETWORK} --rm -t bigtop/slaves:${PREFIX}-${OS}-${VERSION} -f Dockerfile ../..
92+
docker build ${NETWORK} --rm --no-cache -t bigtop/slaves:${PREFIX}-${OS}-${VERSION} -f Dockerfile ../..
9393
rm -f Dockerfile

0 commit comments

Comments
 (0)