MR-ZC 554708b062
Some checks failed
打包发布docker镜像 / build-push (push) Has been cancelled
更新 Dockerfile,修改基础镜像为私有 Docker Registry 中的 Python 3.10-alpine 版本。
2025-03-25 18:47:13 +08:00

7 lines
122 B
Docker

FROM dockerproxy.fandouke.com/python:3.10-alpine
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "main.py"]