From 645f231d64e7dc062eea93762aca1e99b9cbb4a5 Mon Sep 17 00:00:00 2001 From: saundersp Date: Sun, 19 Jan 2025 22:26:16 +0100 Subject: [PATCH] Updated Dockerfile base images to 3.21.2 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ebf839b..43032de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.21.0 AS builder +FROM alpine:3.21.2 AS builder RUN apk add --no-cache \ libstdc++=14.2.0-r4 \ @@ -16,7 +16,7 @@ COPY *.cpp *.hpp Makefile ./ RUN make -j "$(nproc)" -FROM alpine:3.21.0 +FROM alpine:3.21.2 RUN apk add --no-cache \ libstdc++=14.2.0-r4 \