We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b2d8bb6 + ffa422c commit f3e7c98Copy full SHA for f3e7c98
Dockerfile
@@ -1,5 +1,5 @@
1
# 多阶段构建:编译阶段
2
-FROM python:3.12-alpine AS builder
+FROM python:3.14-alpine AS builder
3
4
# 设置构建参数
5
ARG BUILDKIT_INLINE_CACHE=1
@@ -38,7 +38,7 @@ RUN pip wheel --no-cache-dir --wheel-dir /wheels -r requirements.txt \
38
pip wheel --no-cache-dir --wheel-dir /wheels --only-binary=all -r requirements.txt)
39
40
# 运行阶段:使用最小化镜像
41
-FROM python:3.12-alpine
+FROM python:3.14-alpine
42
43
# 设置运行时环境变量
44
ENV PYTHONUNBUFFERED=1
0 commit comments