Skip to content

Commit 17d37df

Browse files
committed
Pin pip to version 20.2 to avoid bug in 20.3
1 parent 1cf46db commit 17d37df

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lts-app/backend.Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ COPY let-them-speak /lts-app
44

55
WORKDIR /lts-app
66

7-
RUN pip install -U pip && pip install -r requirements.txt
7+
# 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
810

911
EXPOSE 7082
1012

0 commit comments

Comments
 (0)