We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfe586a commit 7fd64d5Copy full SHA for 7fd64d5
application/Dockerfile
@@ -7,7 +7,7 @@ RUN adduser --disabled-password --gecos '' appuser
7
WORKDIR /app
8
9
COPY requirements.txt /app/
10
-RUN pip3 install -r requirements.txt
+RUN pip3 install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
11
12
COPY . /app/
13
application/Dockerfile-api
@@ -3,7 +3,7 @@ FROM public.ecr.aws/docker/library/python:3.10-slim
3
4
5
6
-RUN pip3 install -r requirements-api.txt
+RUN pip3 install -r requirements-api.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
EXPOSE 8000
0 commit comments