diff --git a/Dockerfile b/Dockerfile index fb640acb..7d09b6cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:latest # Install python and pip RUN apk add --no-cache --update python3 py3-pip bash -ADD ./webapp/requirements.txt /tmp/requirements.txt +COPY .. # Install dependencies RUN pip3 install --no-cache-dir -q -r /tmp/requirements.txt