diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-11-15 02:17:33 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-11-15 02:17:33 +0000 |
commit | 61083f97ca4552ffa4fa83b20d30f4a914e24eee (patch) | |
tree | 19150d9c5c082183e17dca98f92aae9e1ca2442f | |
parent | 551740ee18dc83027654b9a0ef6de84901f86d84 (diff) |
Do not use cache when building the image
Change-Id: I4655b631313c923b40304740c0abe06ae885727e
Signed-off-by: Linda Wang <wangwulin@huawei.com>
-rw-r--r-- | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,7 +17,7 @@ arm64_dirs=${arm64_dirs-$(echo "${amd64_dirs}" | sed -e "s|docker/vnf||" \ find . -name Dockerfile -exec sed -i -e "s|opnfv/functest-core|${repo}/functest-core:amd64-latest|g" {} + for dir in ${amd64_dirs}; do - (cd "${dir}" && docker build -t "${repo}/functest-${dir##**/}:amd64-latest" .) + (cd "${dir}" && docker build --no-cache -t "${repo}/functest-${dir##**/}:amd64-latest" .) docker push "${repo}/functest-${dir##**/}:amd64-latest" done find . -name Dockerfile -exec git checkout {} + @@ -25,7 +25,7 @@ find . -name Dockerfile -exec git checkout {} + find . -name Dockerfile -exec sed -i -e "s|alpine:3.6|multiarch/alpine:arm64-v3.6|g" {} + find . -name Dockerfile -exec sed -i -e "s|opnfv/functest-core|${repo}/functest-core:arm64-latest|g" {} + for dir in ${arm64_dirs}; do - (cd "${dir}" && docker build -t "${repo}/functest-${dir##**/}:arm64-latest" .) + (cd "${dir}" && docker build --no-cache -t "${repo}/functest-${dir##**/}:arm64-latest" .) docker push "${repo}/functest-${dir##**/}:arm64-latest" done find . -name Dockerfile -exec git checkout {} + |