From d5a7265f0abbce7118c73d51170ec2f53fa1aba2 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Tue, 18 Oct 2022 07:25:59 +0200 Subject: [PATCH] Force add setuptools --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index fe88bf5..f102793 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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