Skip to content

Commit

Permalink
upgrade pip
Browse files Browse the repository at this point in the history
  • Loading branch information
previ committed Mar 17, 2024
1 parent 757524f commit 169119e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ RUN install_packages \

ENV READTHEDOCS=True
ADD requirements.txt /tmp/.
RUN pip install --no-cache-dir -r /tmp/requirements.txt
RUN pip install --upgrade pip && \
pip install --no-cache-dir -r /tmp/requirements.txt

RUN mkdir -p /coderbot && \
mkdir -p /coderbot/data && \
Expand Down
3 changes: 2 additions & 1 deletion docker/stub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ RUN apt-get update -y && apt-get install -y \
tesseract-ocr-deu

ADD docker/stub/requirements.txt /tmp/.
RUN pip install --no-cache-dir -r /tmp/requirements.txt
RUN pip install --upgrade pip && \
pip install --no-cache-dir -r /tmp/requirements.txt

RUN mkdir -p /coderbot && \
mkdir -p /coderbot/data && \
Expand Down

0 comments on commit 169119e

Please sign in to comment.