File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,8 @@ RUN install_packages \
46
46
47
47
ENV READTHEDOCS=True
48
48
ADD requirements.txt /tmp/.
49
- RUN pip install --no-cache-dir -r /tmp/requirements.txt
49
+ RUN pip install --upgrade pip && \
50
+ pip install --no-cache-dir -r /tmp/requirements.txt
50
51
51
52
RUN mkdir -p /coderbot && \
52
53
mkdir -p /coderbot/data && \
Original file line number Diff line number Diff line change @@ -39,7 +39,8 @@ RUN apt-get update -y && apt-get install -y \
39
39
tesseract-ocr-deu
40
40
41
41
ADD docker/stub/requirements.txt /tmp/.
42
- RUN pip install --no-cache-dir -r /tmp/requirements.txt
42
+ RUN pip install --upgrade pip && \
43
+ pip install --no-cache-dir -r /tmp/requirements.txt
43
44
44
45
RUN mkdir -p /coderbot && \
45
46
mkdir -p /coderbot/data && \
You can’t perform that action at this time.
0 commit comments