diff --git a/Dockerfile b/Dockerfile index fb640acb..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 @@ -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/