Dockerfile : updated base image to alpine:3.22.2

This commit is contained in:
saundersp
2025-10-13 03:03:13 +02:00
parent 60373848a3
commit 59dfda6063

View File

@@ -1,4 +1,4 @@
FROM alpine:3.22.1 AS builder FROM alpine:3.22.2 AS builder
RUN apk add --no-cache \ RUN apk add --no-cache \
libstdc++=14.2.0-r6 \ libstdc++=14.2.0-r6 \
@@ -18,7 +18,7 @@ COPY *.cpp *.hpp Makefile ./
RUN sed -i 's/ -fsanitize=undefined//' Makefile \ RUN sed -i 's/ -fsanitize=undefined//' Makefile \
&& make -j "$(nproc)" && make -j "$(nproc)"
FROM alpine:3.22.1 FROM alpine:3.22.2
RUN apk add --no-cache \ RUN apk add --no-cache \
libstdc++=14.2.0-r6 \ libstdc++=14.2.0-r6 \