aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2021-08-12 09:12:13 +0000
committerGerrit Code Review <gerrit@opnfv.org>2021-08-12 09:12:13 +0000
commitcd8120b5d1dc750da97d1e87316e23c5472268f3 (patch)
tree7dc137ff33c64052514d8db2c594af2c06194369
parent569599f5950fcbf9c2c9f0fdf5f4b469babe573a (diff)
parent0fc49487b76c4790156e336982a42ff9f0a23d55 (diff)
Merge "Update container builds due to Alpine 3.14"
-rw-r--r--build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index f0d768d1..0fc6f09c 100644
--- a/build.sh
+++ b/build.sh
@@ -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