From 7c25b92cea211eb2b32849d51347570bbd962be0 Mon Sep 17 00:00:00 2001 From: Vedanth V Baliga Date: Sun, 28 Jul 2024 00:15:59 +0530 Subject: [PATCH] add flag to avoid build failure --- examples/python-web-app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/python-web-app/Dockerfile b/examples/python-web-app/Dockerfile index 5e158392..d12ac728 100644 --- a/examples/python-web-app/Dockerfile +++ b/examples/python-web-app/Dockerfile @@ -7,7 +7,7 @@ COPY devops /app RUN apt-get update && \ apt-get install -y python3 python3-pip && \ - pip install -r requirements.txt && \ + pip install -r requirements.txt --break-system-packages && \ cd devops ENTRYPOINT ["python3"]