]> git.puffer.fish Git - matthieu/frr.git/commitdiff
docker: Use Alpine Linux version 3.19
authorDonatas Abraitis <donatas@opensourcerouting.org>
Thu, 29 Feb 2024 12:35:17 +0000 (14:35 +0200)
committerton31337 <3352707+ton31337@users.noreply.github.com>
Tue, 12 Mar 2024 20:34:30 +0000 (20:34 +0000)
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
(cherry picked from commit fd93b7d89a119e84773201a41bfe4a2357ba7640)

docker/alpine/Dockerfile

index 98e8407498d602b498d92db38bdf178b5eb0583a..fb3ce83696b70af20ebb15413b02eb6e746447ce 100644 (file)
@@ -1,7 +1,7 @@
 # syntax=docker/dockerfile:1
 
 # Create a basic stage set up to build APKs
-FROM alpine:3.18 as alpine-builder
+FROM alpine:3.19 as alpine-builder
 RUN apk add \
                --update-cache \
                abuild \
@@ -24,7 +24,7 @@ RUN cd /src/libyang \
        && abuild -r -P /pkgs/apk
 
 # This stage builds a dist tarball from the source
-FROM alpine:3.18 as source-builder
+FROM alpine:3.19 as source-builder
 RUN mkdir -p /src/alpine /pkgs/apk
 COPY alpine/APKBUILD.in /src/alpine
 COPY --from=alpine-apk-builder-libyang /pkgs/apk/src /pkgs/apk
@@ -58,7 +58,7 @@ RUN cd /dist \
        && abuild -r -P /pkgs/apk
 
 # This stage installs frr from the apk
-FROM alpine:3.18
+FROM alpine:3.19
 RUN mkdir -p /pkgs/apk
 COPY --from=alpine-apk-builder /pkgs/apk/ /pkgs/apk/
 RUN apk add \