From 0effd906f09239354c57186a780876b465ae7a96 Mon Sep 17 00:00:00 2001 From: Brad Cowie Date: Thu, 16 Jan 2025 13:44:17 +1300 Subject: [PATCH] Upgrade base image to python:3.12-alpine3.21 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d64bf33..2118dbc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ## Image name: faucet/python3 -FROM python:3.11-alpine3.19 +FROM python:3.12-alpine3.21 RUN apk add --no-cache su-exec && \ if [ ! -e /usr/bin/pip ]; then ln -s /usr/bin/pip3 /usr/bin/pip; fi && \