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