Skip to content

Commit

Permalink
--break-system-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
previ committed Mar 28, 2024
1 parent ebf8970 commit d11db6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Expand Up @@ -46,7 +46,7 @@ RUN install_packages \
ENV READTHEDOCS=True
ADD requirements.txt /tmp/.
RUN pip install --upgrade pip && \
pip install --no-cache-dir -r /tmp/requirements.txt
pip install --no-cache-dir --break-system-packages -r /tmp/requirements.txt

RUN mkdir -p /coderbot && \
mkdir -p /coderbot/data && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.arm64
Expand Up @@ -47,7 +47,7 @@ RUN install_packages \
ENV READTHEDOCS=True
ADD requirements.txt /tmp/.
RUN pip install --upgrade pip && \
pip install --no-cache-dir -r /tmp/requirements.txt
pip install --no-cache-dir --break-system-packages -r /tmp/requirements.txt

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

0 comments on commit d11db6d

Please sign in to comment.