🐛 fix(base.Dockerfile): change --with deploy to --extras deploy in poetry install command to correctly install deploy extras
This commit is contained in:
parent
49729263ef
commit
c2ec95fbb7
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue