From a01ab46d1f1273f914b937dd9f66b9372fad8234 Mon Sep 17 00:00:00 2001 From: jaswanthnasa <92042814+jaswanthnasa@users.noreply.github.com> Date: Wed, 4 Sep 2024 18:26:06 +0530 Subject: [PATCH] Update Dockerfile --- examples/python-web-app/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/python-web-app/Dockerfile b/examples/python-web-app/Dockerfile index 5e158392..465510b5 100644 --- a/examples/python-web-app/Dockerfile +++ b/examples/python-web-app/Dockerfile @@ -1,9 +1,10 @@ -FROM ubuntu +FROM ubuntu:22.04 WORKDIR /app COPY requirements.txt /app COPY devops /app +ENV PIP_BREAK_SYSTEM_PACKAGES 1 RUN apt-get update && \ apt-get install -y python3 python3-pip && \