Skip to content

Commit

Permalink
remove "--no-dev" in poetry install (python-poetry/poetry#4493)
Browse files Browse the repository at this point in the history
(same fix as Mon Aug 1 fix applied here to default dockerfile)
  • Loading branch information
jdum committed Sep 1, 2022
1 parent c4a0c8d commit e79766a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nua_build/nua_build/defaults/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG nua_builder_tag
FROM ${nua_builder_tag} AS compile-image

RUN apt-get install -y build-essential git
RUN python -m pip install poetry && cd /nua/nua_build && poetry install --no-dev && nua_build_self_setup
RUN python -m pip install poetry && cd /nua/nua_build && poetry install && nua_build_self_setup

FROM ${nua_builder_tag} AS runtime-image
COPY --from=compile-image /nua /nua
Expand Down

0 comments on commit e79766a

Please sign in to comment.