From 97663dc9429bf870ae7cd6b5b7f2cfda7642b642 Mon Sep 17 00:00:00 2001 From: BryantHe Date: Mon, 10 Jul 2023 12:55:25 +0800 Subject: [PATCH] update file --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6051935..5eb8d9f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ FROM python:3.11 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 CMD ["python3", "app.py"] \ No newline at end of file