From 0ae0f4dbdbb3f54bc3eb9fde04966a03b9660fee Mon Sep 17 00:00:00 2001 From: wood Date: Wed, 4 Sep 2024 15:55:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0Docker=E5=9F=BA=E7=A1=80?= =?UTF-8?q?=E9=95=9C=E5=83=8F=E4=BB=A5=E4=BD=BF=E7=94=A8Python=203.12.5-sl?= =?UTF-8?q?im?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将Dockerfile中的Python基础镜像版本从3.9-slim更新到3.12.5-slim,以使用最新的Python版本。 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 805f3cb..1209381 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-slim +FROM python:3.12.5-slim # 设置时区 ENV TZ=Asia/Singapore