Spaces:
Running
Running
File size: 557 Bytes
5d057f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # 使用官方 Python 运行时作为父镜像
FROM python:3.9-slim
# 先更新包列表,然后安装 git。
# --no-install-recommends 可以减少不必要的包安装,保持镜像体积较小。
# 最后清理 apt 缓存,这是减小镜像大小的好习惯。
RUN apt-get update && \
apt-get install -y git --no-install-recommends && \
rm -rf /var/lib/apt/lists/*
# 设置工作目录
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
# 容器启动时运行 main.py
CMD ["python", "main.py"] |