From b9d096275f4355bf86a59f247d0ada3241a53966 Mon Sep 17 00:00:00 2001 From: David Vogt Date: Thu, 9 Jan 2025 12:03:37 +0100 Subject: [PATCH] fix(build): don't crash build step due to missing readme at this stage --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3aae37260..4dbe70c6b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ USER caluma ARG INSTALL_DEV_DEPENDENCIES=false COPY pyproject.toml poetry.lock $APP_HOME/ -RUN if [ "$INSTALL_DEV_DEPENDENCIES" = "true" ]; then poetry install; else poetry install --without dev; fi +RUN if [ "$INSTALL_DEV_DEPENDENCIES" = "true" ]; then poetry install --no-root; else poetry install --without dev --no-root; fi COPY . $APP_HOME