From a2cb66edf156e7ed045743200cddd3bc7d15976c Mon Sep 17 00:00:00 2001 From: franckyNY Date: Fri, 19 Apr 2024 21:08:31 +0000 Subject: [PATCH 1/2] modification dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fb640acb..8ca5b266 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN apk add --no-cache --update python3 py3-pip bash ADD ./webapp/requirements.txt /tmp/requirements.txt # Install dependencies -RUN pip3 install --no-cache-dir -q -r /tmp/requirements.txt +RUN pip3 install --no-cache-dir -q -r /tmp/requirements.txt --break-system-packages # Add our code ADD ./webapp /opt/webapp/ From 560b51099b7d920071e26655905666cee5c738b7 Mon Sep 17 00:00:00 2001 From: franckyNY Date: Fri, 19 Apr 2024 21:19:59 +0000 Subject: [PATCH 2/2] new Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8ca5b266..525ca568 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -#Grab the latest alpine image +#Grab the latest alpine image NY FROM alpine:latest # Install python and pip