diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-06-14 09:30:31 +0200 |
---|---|---|
committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-06-14 09:30:31 +0200 |
commit | 686d477242890c575024962188dd50c06160f2a3 (patch) | |
tree | cfb85694f9b23e40d792c5012bf21cafa7fa8f72 /docker | |
parent | Merge pull request #16188 from anlancs/isisd/fix-metric-style (diff) | |
download | frr-686d477242890c575024962188dd50c06160f2a3.tar.xz frr-686d477242890c575024962188dd50c06160f2a3.zip |
docker: Use Alpine Linux 3.20
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'docker')
-rw-r--r-- | docker/alpine/Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/alpine/Dockerfile b/docker/alpine/Dockerfile index 1cff06fee..3f811455b 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.19 as alpine-builder +FROM alpine:3.20 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.19 as source-builder +FROM alpine:3.20 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 @@ -57,7 +57,7 @@ RUN cd /dist \ && abuild -r -P /pkgs/apk # This stage installs frr from the apk -FROM alpine:3.19 +FROM alpine:3.20 RUN mkdir -p /pkgs/apk COPY --from=alpine-apk-builder /pkgs/apk/ /pkgs/apk/ RUN apk add \ |