diff --git a/Dockerfile b/Dockerfile index 3bbbc27..7a92d4e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM python:3.10.11-slim-buster WORKDIR /app COPY . . +RUN pip3 config set global.index-url https://mirrors.aliyun.com/pypi/simple/ RUN pip3 install -r requirements.txt EXPOSE 8000 CMD ["python3", "main.py"] \ No newline at end of file