Skip to content

Commit f3d40d4

Browse files
committed
docker: Use Alpine 3.22 image
An upgrade from 3.20 Signed-off-by: Donatas Abraitis <[email protected]>
1 parent 95d3507 commit f3d40d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
# Create a basic stage set up to build APKs
4-
FROM alpine:3.20 as alpine-builder
4+
FROM alpine:3.22 as alpine-builder
55
RUN apk add \
66
--update-cache \
77
abuild \
@@ -25,7 +25,7 @@ RUN cd /src/libyang \
2525
&& abuild -r -P /pkgs/apk
2626

2727
# This stage builds a dist tarball from the source
28-
FROM alpine:3.20 as source-builder
28+
FROM alpine:3.22 as source-builder
2929
RUN mkdir -p /src/alpine /pkgs/apk
3030
COPY alpine/APKBUILD.in /src/alpine
3131
COPY --from=alpine-apk-builder-libyang /pkgs/apk/src /pkgs/apk
@@ -59,7 +59,7 @@ RUN cd /dist \
5959
&& abuild -r -P /pkgs/apk
6060

6161
# This stage installs frr from the apk
62-
FROM alpine:3.20
62+
FROM alpine:3.22
6363
RUN mkdir -p /pkgs/apk
6464
COPY --from=alpine-apk-builder /pkgs/apk/ /pkgs/apk/
6565
RUN apk add \

0 commit comments

Comments
 (0)