MR-ZC ef1440a915
Some checks failed
打包发布docker镜像 / build-push (push) Failing after 1m6s
更新 Dockerfile,将基础镜像更改为官方的 Python 3.10-alpine 版本。
2025-03-25 19:07:04 +08:00

7 lines
97 B
Docker

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