Dockerfile 421 B

123456789101112
  1. # 第一个阶段:构建阶段
  2. FROM python:3.12-slim
  3. # 设置工作目录
  4. WORKDIR /app
  5. COPY . /app
  6. # 复制 requirements.txt 并运行 pip install 在单独的镜像层中
  7. RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
  8. # RUN pip install --no-cache-dir -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
  9. # CMD ["gunicorn", "-c", "gu_docker.py", "main.wsgi:application"]