diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-02-29 14:35:17 +0200 | 
|---|---|---|
| committer | ton31337 <3352707+ton31337@users.noreply.github.com> | 2024-03-12 20:34:30 +0000 | 
| commit | d538c71383a9a97f73573a37626b731056ddbb32 (patch) | |
| tree | 187ef213d47bd5eb099b1d25a643e3ac74be995a | |
| parent | 99f99dfaa3d20c43e574888654f96e6b3e5f8dac (diff) | |
docker: Use Alpine Linux version 3.19
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
(cherry picked from commit fd93b7d89a119e84773201a41bfe4a2357ba7640)
| -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 98e8407498..fb3ce83696 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 \  | 
