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 1cf46db commit 17d37dfCopy full SHA for 17d37df
lts-app/backend.Dockerfile
@@ -4,7 +4,9 @@ COPY let-them-speak /lts-app
4
5
WORKDIR /lts-app
6
7
-RUN pip install -U pip && pip install -r requirements.txt
+# Pinning pip 20.2 until this issue is fixed https://github.com/pypa/pip/issues/9180
8
+#RUN pip install -U pip && pip install -r requirements.txt
9
+RUN pip install --upgrade pip~=20.2.0 && pip install -r requirements.txt
10
11
EXPOSE 7082
12
0 commit comments