|
@@ -0,0 +1,18 @@
|
|
|
+# 1. 基于官方 Python 3.12 slim
|
|
|
+FROM python:3.12-slim
|
|
|
+
|
|
|
+# 2. 使用中科大 Debian Bookworm 镜像源
|
|
|
+RUN printf "deb https://mirrors.ustc.edu.cn/debian bookworm main contrib non-free non-free-firmware\n\
|
|
|
+deb https://mirrors.ustc.edu.cn/debian bookworm-updates main contrib non-free non-free-firmware\n\
|
|
|
+deb https://mirrors.ustc.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware\n" \
|
|
|
+> /etc/apt/sources.list
|
|
|
+
|
|
|
+# 3. 安装推理时常用运行库;4. 最后清理缓存减小镜像
|
|
|
+RUN apt-get update && \
|
|
|
+ apt-get install -y --no-install-recommends \
|
|
|
+ libglib2.0-0 \
|
|
|
+ libgl1 && \
|
|
|
+ rm -rf /var/lib/apt/lists/*
|
|
|
+
|
|
|
+# 5. 默认命令,仅测试镜像;业务镜像里可覆盖
|
|
|
+CMD ["python", "--version"]
|