Snap-Solver / Dockerfile
renxsh
init
f1b4581
raw
history blame contribute delete
204 Bytes
FROM python:3.10-slim
WORKDIR /app
# 安装依赖
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 复制项目所有文件
COPY . .
# 启动命令
CMD ["python", "app.py"]