From 0567974f31d59086bae28285c292dd661668d1fe Mon Sep 17 00:00:00 2001 From: Alex Wellnitz Date: Sat, 21 Sep 2024 08:54:25 +0200 Subject: [PATCH] fix(backend): Docker build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d2bbeb7..4bb9153 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ ENV VIRTUAL_ENV=/opt/venv RUN python3 -m venv $VIRTUAL_ENV ENV PATH="$VIRTUAL_ENV/bin:$PATH" # Install dependencies: -COPY requirements.txt . +COPY backend/requirements.txt . RUN pip install -r requirements.txt COPY backend/ . COPY --from=build /app/out ./templates