simplecrack / Dockerfile
Jack698's picture
Upload folder using huggingface_hub
5d057f3 verified
raw
history blame contribute delete
557 Bytes
# 使用官方 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"]