From 27f2b63bf4297bea6b90d62612313d36e0d7d528 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thorsten=20Ro=C3=9Fner?= <thorsten.rossner.extern@zendis.de>
Date: Wed, 4 Sep 2024 10:26:24 +0200
Subject: [PATCH] fix: Use pip to install Python dependencies.

---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 11297e6..3209ee9 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -20,6 +20,6 @@ COPY ./template.ods /app/
 COPY lib /app/lib
 COPY data /app/data
 
-RUN pip install --no-cache-dir -r /app/requirements.txt
+RUN pip install --no-cache-dir --break-system-packages -r /app/requirements.txt
 
 CMD [ "/app/user_import_udm_rest_api.py"]
-- 
GitLab