From f24732b5814a4d3723051b97279884b2520aeb28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20=C5=81=C4=85czkowski?= Date: Wed, 22 May 2024 10:29:45 +0200 Subject: [PATCH] IUM_10 - update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1eabfc8..f0fc33f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y \ COPY requirements.txt ./ # Install the required Python packages form requirements.txt -RUN pip3 install -r requirements.txt +RUN pip3 install -r requirements.txt --break-system-packages # Set the working directory WORKDIR /app