diff --git a/backend/Dockerfile b/backend/Dockerfile index 300acaa..7085901 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -5,7 +5,7 @@ RUN python -m venv venv COPY ./requirements.txt /code/requirements.txt RUN . venv/bin/activate RUN python -m pip install -r /code/requirements.txt -COPY venv /code/venv +RUN cp -r venv /code/venv WORKDIR /code COPY app app