]> git.puffer.fish Git - matthieu/frr.git/commitdiff
docker: Use Alpine Linux 3.18
authorDonatas Abraitis <donatas@opensourcerouting.org>
Thu, 20 Jul 2023 19:11:03 +0000 (22:11 +0300)
committerDonatas Abraitis <donatas@opensourcerouting.org>
Fri, 21 Jul 2023 06:12:04 +0000 (09:12 +0300)
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>
docker/alpine/Dockerfile

index 54621a49fdb05717af9be9ab7c5269765f9d4176..6268d83936ff71276155020739572d440b88510b 100644 (file)
@@ -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 \