feature/todo #9

Merged
Bryant merged 2 commits from feature/todo into develop 2023-07-10 12:58:37 +08:00
1 changed files with 2 additions and 0 deletions
Showing only changes of commit 97663dc942 - Show all commits

View File

@ -2,6 +2,8 @@ FROM python:3.11
WORKDIR /app WORKDIR /app
COPY requirements.txt .
RUN python3 -m pip install -i https://mirrors.cloud.tencent.com/pypi/simple --trusted-host=mirrors.cloud.tencent.com -r requirements.txt RUN python3 -m pip install -i https://mirrors.cloud.tencent.com/pypi/simple --trusted-host=mirrors.cloud.tencent.com -r requirements.txt
CMD ["python3", "app.py"] CMD ["python3", "app.py"]