diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2021-08-12 09:12:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2021-08-12 09:12:13 +0000 |
commit | cd8120b5d1dc750da97d1e87316e23c5472268f3 (patch) | |
tree | 7dc137ff33c64052514d8db2c594af2c06194369 | |
parent | 569599f5950fcbf9c2c9f0fdf5f4b469babe573a (diff) | |
parent | 0fc49487b76c4790156e336982a42ff9f0a23d55 (diff) |
Merge "Update container builds due to Alpine 3.14"
-rw-r--r-- | build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -24,12 +24,12 @@ build_opts=(--pull=true --no-cache --force-rm=true) for arch in ${arch}; do if [[ ${arch} == arm64 ]]; then find . -name Dockerfile -exec sed -i \ - -e "s|alpine:3.13|arm64v8/alpine:3.13|g" {} + + -e "s|alpine:3.14|arm64v8/alpine:3.14|g" {} + find . -name Dockerfile -exec sed -i \ -e "s|opnfv/xtesting|${repo}/xtesting:arm64-${tag}|g" {} + elif [[ ${arch} == arm ]]; then find . -name Dockerfile -exec sed -i \ - -e "s|alpine:3.13|arm32v6/alpine:3.13|g" {} + + -e "s|alpine:3.14|arm32v6/alpine:3.14|g" {} + find . -name Dockerfile -exec sed -i \ -e "s|opnfv/xtesting|${repo}/xtesting:arm-${tag}|g" {} + else |