From d16fc2aa65643036dff9bfcd727b089e0307299d Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Wed, 19 Oct 2022 22:22:12 +0200 Subject: [PATCH] Try to postpone setuptools install --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f102793..ca4d5f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,8 @@ 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 + && poetry install $POETRY_OPTIONS \ + && python -m pip install setuptools ENV PATH /app/venv/bin:$PATH COPY src ./src/