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