From 0e889c7178b36a9e11828c2aea801aa7834e1896 Mon Sep 17 00:00:00 2001 From: Alec Elton Date: Mon, 30 Mar 2026 19:13:04 -0600 Subject: [PATCH 1/2] Update dockerfile to 'break' system packages, fixes #46 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 13db3ff..28a9323 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,7 @@ RUN npm install --omit=dev USER root COPY Pipfile* ./ -RUN pipenv install --system --deploy +RUN pipenv install --system --deploy --break-system-packages COPY . . # RUN chown -R uwsgi:uwsgi /app From 279b084659f45c28a4212e0698699cd0077bf8a3 Mon Sep 17 00:00:00 2001 From: Alec Elton Date: Mon, 30 Mar 2026 19:27:11 -0600 Subject: [PATCH 2/2] try again --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 28a9323..3a3de61 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,7 @@ RUN npm install --omit=dev USER root COPY Pipfile* ./ -RUN pipenv install --system --deploy --break-system-packages +RUN PIP_BREAK_SYSTEM_PACKAGES=1 pipenv install --system --deploy COPY . . # RUN chown -R uwsgi:uwsgi /app