diff --git a/examples/python-web-app/Dockerfile b/examples/python-web-app/Dockerfile index 5e158392..c56bafd3 100644 --- a/examples/python-web-app/Dockerfile +++ b/examples/python-web-app/Dockerfile @@ -7,7 +7,11 @@ COPY devops /app RUN apt-get update && \ apt-get install -y python3 python3-pip && \ - pip install -r requirements.txt && \ + #pip install -r requirements.txt && \ # this is abhi command + # this is asif command + pip install Django --break-system-packages && \ + # this is asif command + pip install tzdata --break-system-packages && \ cd devops ENTRYPOINT ["python3"]