Force add setuptools

This commit is contained in:
Gabriel Augendre 2022-10-18 07:25:59 +02:00
parent 48f0825c63
commit d5a7265f0a

View file

@ -14,6 +14,7 @@ COPY pyproject.toml poetry.lock ./
RUN python -m venv --copies /app/venv \
&& . /app/venv/bin/activate \
&& python -m pip install setuptools \
&& poetry install $POETRY_OPTIONS
ENV PATH /app/venv/bin:$PATH