summaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2022-12-02 15:42:00 +0200
committerDonatas Abraitis <donatas@opensourcerouting.org>2022-12-02 15:42:00 +0200
commit784ca7702ddfa4a83b686d9760b01e9704f49b05 (patch)
tree79f69d8d1964c3c7441adf69ce431a285dcfee19 /docker
parent78464691ee4121104336d528901ae3077e1ccc79 (diff)
docker: Use Alpine 3.17 as base image
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
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 238a7fc409..afc6be2312 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.16 as alpine-builder
+FROM alpine:3.17 as alpine-builder
RUN apk add \
--update-cache \
abuild \
@@ -13,7 +13,7 @@ RUN apk add \
RUN adduser -D -G abuild builder && su builder -c 'abuild-keygen -a -n'
# This stage builds a dist tarball from the source
-FROM alpine:3.16 as source-builder
+FROM alpine:3.17 as source-builder
RUN mkdir -p /src/alpine
COPY alpine/APKBUILD.in /src/alpine
@@ -48,7 +48,7 @@ RUN cd /dist \
&& abuild -r -P /pkgs/apk
# This stage installs frr from the apk
-FROM alpine:3.16
+FROM alpine:3.17
RUN mkdir -p /pkgs/apk
COPY --from=alpine-apk-builder /pkgs/apk/ /pkgs/apk/
RUN apk add \