add dockerfile
Build-Deploy-Actions Details

This commit is contained in:
songw 2023-05-15 14:19:25 +08:00
parent e0f3566f42
commit 213510205e
1 changed files with 10 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM python:3.8.13
WORKDIR /app
COPY . /app
RUN pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple
RUN pip install -r requirements.txt
CMD ["python", "app.py"]