diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-02-29 13:35:17 +0100 |
---|---|---|
committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-03-09 08:33:40 +0100 |
commit | fd93b7d89a119e84773201a41bfe4a2357ba7640 (patch) | |
tree | 6f314cdefc4cac8d65ecbacc6707ba97fa0fe65e | |
parent | vtysh: Include fnctl.h for vtysh_main (diff) | |
download | frr-fd93b7d89a119e84773201a41bfe4a2357ba7640.tar.xz frr-fd93b7d89a119e84773201a41bfe4a2357ba7640.zip |
docker: Use Alpine Linux version 3.19
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
-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 98e840749..fb3ce8369 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.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 \ |