fix: remove unnecessary env variables in dockerfile

Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2299>
This commit is contained in:
jo 2023-01-20 17:18:40 +01:00 committed by Marge
parent 65df7bf7a4
commit f4241241dc
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ RUN set -eux; \
# Create virtual env
RUN python3 -m venv --system-site-packages /venv
ENV PATH="/venv/bin:/root/.local/bin:$PATH" VIRTUAL_ENV=/venv
ENV PATH="/venv/bin:$PATH"
COPY --from=pre-build /requirements.txt /requirements.txt
COPY --from=pre-build /dev-requirements.txt /dev-requirements.txt