Skip to content

Commit

Permalink
fix(build): don't crash build step due to missing readme at this stage
Browse files Browse the repository at this point in the history
  • Loading branch information
winged authored and czosel committed Jan 9, 2025
1 parent 4ea87d0 commit 75f3c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 75f3c93

Please sign in to comment.