Remove unused poetry config in dockerfile

This commit is contained in:
Gabriel Augendre 2021-12-26 23:25:50 +01:00
parent c95e097f34
commit c033078859

View file

@ -18,7 +18,6 @@ COPY pyproject.toml poetry.lock ./
RUN python -m venv --copies /app/venv \
&& . /app/venv/bin/activate \
&& poetry config cache-dir /app/poetry-cache \
&& poetry install $POETRY_OPTIONS