From 59dfda6063832b902a702680e716b5b388de42ac Mon Sep 17 00:00:00 2001 From: saundersp Date: Mon, 13 Oct 2025 03:03:13 +0200 Subject: [PATCH] Dockerfile : updated base image to alpine:3.22.2 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f10632a..ba3ad90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.22.1 AS builder +FROM alpine:3.22.2 AS builder RUN apk add --no-cache \ libstdc++=14.2.0-r6 \ @@ -18,7 +18,7 @@ COPY *.cpp *.hpp Makefile ./ RUN sed -i 's/ -fsanitize=undefined//' Makefile \ && make -j "$(nproc)" -FROM alpine:3.22.1 +FROM alpine:3.22.2 RUN apk add --no-cache \ libstdc++=14.2.0-r6 \