From a36e152cd9f6b7a8e39930542ef9e1dd0f5dc96c Mon Sep 17 00:00:00 2001 From: Lino Schmidt Date: Wed, 14 Jun 2023 22:10:53 +0200 Subject: [PATCH] fixed pip --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ec15d40..661bc92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,10 +15,10 @@ RUN npm install COPY ./src . # Installiere Python -RUN apt-get update && apt-get install -y python3-full python3-pip +RUN apt-get update && apt-get install -y python3 python3-pip # Installiere die Python-Abhängigkeiten -RUN pip3 install --no-cache-dir -r requirements.txt +RUN pip3 install --no-cache-dir -r requirements.txt --break-system-packages # Öffne den Port des Web-Servers EXPOSE 3000