aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2022-04-22 22:47:50 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2022-04-22 22:48:21 +0200
commit4c91aa8d974d95fec6b39741102327716a7cf20d (patch)
tree9723f5e22f0375012871d48f91cd81935730cbcf /build.sh
parent33a884eae2153a2ea91b4bce79b06028e783e8bf (diff)
Update to Alpine 3.15
Change-Id: I283f95fa9c0a51b31c2612f44c1e722a688f6a02 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 0fc6f09c..3f100862 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.14|arm64v8/alpine:3.14|g" {} +
+ -e "s|alpine:3.15|arm64v8/alpine:3.15|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.14|arm32v6/alpine:3.14|g" {} +
+ -e "s|alpine:3.15|arm32v6/alpine:3.15|g" {} +
find . -name Dockerfile -exec sed -i \
-e "s|opnfv/xtesting|${repo}/xtesting:arm-${tag}|g" {} +
else