diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-11-15 02:17:33 +0000 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2017-11-15 14:04:04 +0100 |
commit | d45f54a5ea6a2279f42dd4334035a1f9cdfba75e (patch) | |
tree | b8a4a58414640f6ee13b607dd985eea82eba12f6 /build.sh | |
parent | 1b5b20be96f9ed46e23f3b7feb3ee63f8731345b (diff) |
Do not use cache when building the image
Conflicts:
build.sh
Change-Id: I4655b631313c923b40304740c0abe06ae885727e
Signed-off-by: Linda Wang <wangwulin@huawei.com>
(cherry picked from commit 61083f97ca4552ffa4fa83b20d30f4a914e24eee)
Diffstat (limited to 'build.sh')
-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:euphrates|${repo}/functest-core:amd64-euphrates|g" {} + for dir in ${amd64_dirs}; do - (cd "${dir}" && docker build -t "${repo}/functest-${dir##**/}:amd64-euphrates" .) + (cd "${dir}" && docker build --no-cache -t "${repo}/functest-${dir##**/}:amd64-euphrates" .) docker push "${repo}/functest-${dir##**/}:amd64-euphrates" 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:euphrates|${repo}/functest-core:arm64-euphrates|g" {} + for dir in ${arm64_dirs}; do - (cd "${dir}" && docker build -t "${repo}/functest-${dir##**/}:arm64-euphrates" .) + (cd "${dir}" && docker build --no-cache -t "${repo}/functest-${dir##**/}:arm64-euphrates" .) docker push "${repo}/functest-${dir##**/}:arm64-euphrates" done find . -name Dockerfile -exec git checkout {} + |