summaryrefslogtreecommitdiff
path: root/docker/alpine
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2023-07-20 22:11:03 +0300
committerDonatas Abraitis <donatas@opensourcerouting.org>2023-07-20 22:11:03 +0300
commit1152259d8d2ec3f9aacd2d7e3af86bb6792a119a (patch)
tree95a8139a99425fb6d80f8b2d5b1dc3d5377332ce /docker/alpine
parent237e2c62ed3a1e6d422b19c13ff1843a9860c01f (diff)
docker: Use Alpine Linux 3.18
It has the newer libyang version 2.1.55, while 3.17 has 2.1.30. 3.19 will have 2.1.80. Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'docker/alpine')
-rw-r--r--docker/alpine/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/alpine/Dockerfile b/docker/alpine/Dockerfile
index 54621a49fd..6268d83936 100644
--- a/docker/alpine/Dockerfile
+++ b/docker/alpine/Dockerfile
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1
# Create a basic stage set up to build APKs
-FROM alpine:3.17 as alpine-builder
+FROM alpine:3.18 as alpine-builder
RUN apk add \
--update-cache \
abuild \
@@ -13,7 +13,7 @@ RUN apk add \
RUN adduser -D -G abuild builder && su builder -c 'abuild-keygen -a -n'
# This stage builds a dist tarball from the source
-FROM alpine:3.17 as source-builder
+FROM alpine:3.18 as source-builder
RUN mkdir -p /src/alpine
COPY alpine/APKBUILD.in /src/alpine
@@ -49,7 +49,7 @@ RUN cd /dist \
&& abuild -r -P /pkgs/apk
# This stage installs frr from the apk
-FROM alpine:3.17
+FROM alpine:3.18
RUN mkdir -p /pkgs/apk
COPY --from=alpine-apk-builder /pkgs/apk/ /pkgs/apk/
RUN apk add \