Dockerfile : updated base image to alpine:3.22.1

This commit is contained in:
saundersp
2025-08-24 16:50:25 +02:00
parent 14e3997aca
commit 2a587a0c5b

View File

@@ -1,4 +1,4 @@
FROM alpine:3.22.0 AS builder FROM alpine:3.22.1 AS builder
RUN apk add --no-cache \ RUN apk add --no-cache \
libstdc++=14.2.0-r6 \ libstdc++=14.2.0-r6 \
@@ -16,7 +16,7 @@ COPY *.cpp *.hpp Makefile ./
RUN make -j "$(nproc)" RUN make -j "$(nproc)"
FROM alpine:3.22.0 FROM alpine:3.22.1
RUN apk add --no-cache \ RUN apk add --no-cache \
libstdc++=14.2.0-r6 \ libstdc++=14.2.0-r6 \