From a34097a2b94e963a356e1256df5680294fa37363 Mon Sep 17 00:00:00 2001 From: rv-gates <112984533+rv-gates@users.noreply.github.com> Date: Fri, 26 Jul 2024 15:33:09 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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