From 13c335a524895bebbedc2656dde65ba02e702335 Mon Sep 17 00:00:00 2001 From: aaron <> Date: Tue, 29 Apr 2025 00:56:06 +0800 Subject: [PATCH] update --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4a330d9..ac84cdc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-slim as builder +FROM python:3.13-slim as builder # 安装系统依赖 RUN apt-get update && apt-get install -y --no-install-recommends \ @@ -23,7 +23,7 @@ RUN pip install --upgrade pip && \ pip wheel --wheel-dir=/build/wheels -r requirements.txt # 第二阶段:最终镜像 -FROM python:3.10-slim +FROM python:3.13-slim # 安装运行时依赖 RUN apt-get update && apt-get install -y --no-install-recommends \