From 23e828c481c7e8722a8712ee7f3b804f446632de Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Thu, 11 Jan 2024 10:05:01 +0100 Subject: [PATCH] ci: fix? --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 769c5a7..848574b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ COPY requirements.txt . COPY app.py . COPY gunicorn_config.py . -RUN pip install --no-cache-dir -r requirements.txt +RUN pip install --no-cache-dir --break-system-packages -r requirements.txt EXPOSE 5000