|
|
@@ -1,6 +1,6 @@
|
|
|
# Dockerfile for AIServ
|
|
|
# 使用 Python 3.11(稳定兼容)
|
|
|
-FROM python:3.11-slim
|
|
|
+FROM docker.m.daocloud.io/library/python:3.11-slim
|
|
|
|
|
|
# 设置环境变量
|
|
|
ENV PYTHONDONTWRITEBYTECODE=1 \
|
|
|
@@ -34,6 +34,8 @@ RUN pip install --no-cache-dir numpy==2.2.6
|
|
|
|
|
|
# 2.3 安装其他依赖
|
|
|
RUN pip install --no-cache-dir \
|
|
|
+ --index-url https://pypi.tuna.tsinghua.edu.cn/simple \
|
|
|
+ --trusted-host pypi.tuna.tsinghua.edu.cn \
|
|
|
flask==3.1.2 \
|
|
|
flask-cors==6.0.1 \
|
|
|
scikit-learn==1.7.2 \
|