From 5e84762c5b7918c22285ed2b98aaaff622824548 Mon Sep 17 00:00:00 2001 From: Brad Cowie Date: Fri, 27 Feb 2026 10:23:52 +1300 Subject: [PATCH] Upgrade base image to python:3.12-alpine3.23 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aba5e84..88ee251 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ## Image name: faucet/python3 -FROM python:3.12-alpine3.22 +FROM python:3.12-alpine3.23 RUN apk add --no-cache su-exec && \ if [ ! -e /usr/bin/pip ]; then ln -s /usr/bin/pip3 /usr/bin/pip; fi && \