summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2024-02-29 14:35:17 +0200
committerton31337 <3352707+ton31337@users.noreply.github.com>2024-03-12 20:34:30 +0000
commitd538c71383a9a97f73573a37626b731056ddbb32 (patch)
tree187ef213d47bd5eb099b1d25a643e3ac74be995a /docker
parent99f99dfaa3d20c43e574888654f96e6b3e5f8dac (diff)
docker: Use Alpine Linux version 3.19
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org> (cherry picked from commit fd93b7d89a119e84773201a41bfe4a2357ba7640)
Diffstat (limited to 'docker')
-rw-r--r--docker/alpine/Dockerfile6
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 \