From 3249a47f7f1ea31042619f836748d504cdfbdfc4 Mon Sep 17 00:00:00 2001 From: Chester Curme Date: Mon, 18 Mar 2024 13:45:01 -0400 Subject: [PATCH] update poetry install in dockerfile --- backend/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 7977ab7..17cec2f 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -24,8 +24,7 @@ RUN set -eux && \ libmagic1 # https://python-poetry.org/docs/master/#installing-with-the-official-installer -RUN curl -sSL https://install.python-poetry.org | python - -ENV PATH="$POETRY_HOME/bin:$PATH" +RUN pip install poetry # install deps before copying project files so the cache is only invalidated # when the deps change