From d11db6d49e482daeca57255e2fd9bbe578ea2752 Mon Sep 17 00:00:00 2001 From: previ Date: Fri, 29 Mar 2024 00:19:50 +0100 Subject: [PATCH] --break-system-packages --- docker/Dockerfile | 2 +- docker/Dockerfile.arm64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 6443fd5..a387174 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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 && \ diff --git a/docker/Dockerfile.arm64 b/docker/Dockerfile.arm64 index 97bfc75..39ad54d 100644 --- a/docker/Dockerfile.arm64 +++ b/docker/Dockerfile.arm64 @@ -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 && \