mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-27 01:24:53 +08:00
🐛 fix(base.Dockerfile): change --with deploy to --extras deploy in poetry install command to correctly install deploy extras
This commit is contained in:
@ -68,7 +68,7 @@ COPY ./src/backend ./src/backend
|
||||
COPY README.md .
|
||||
# install runtime deps - uses $POETRY_VIRTUALENVS_IN_PROJECT internally
|
||||
RUN --mount=type=cache,target=/root/.cache \
|
||||
poetry install --without dev --with deploy
|
||||
poetry install --without dev --extras deploy
|
||||
|
||||
|
||||
################################
|
||||
@ -84,4 +84,4 @@ COPY --from=builder-base $PYSETUP_PATH $PYSETUP_PATH
|
||||
|
||||
# quicker install as runtime deps are already installed
|
||||
RUN --mount=type=cache,target=/root/.cache \
|
||||
poetry install --with=dev
|
||||
poetry install --with=dev --extras deploy
|
||||
|
||||
Reference in New Issue
Block a user