Skip to content

Commit

Permalink
fix: updates install of deps via poetry for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
sennierer authored Mar 12, 2024
1 parent d7e37ea commit fa94a28
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 @@ -32,7 +32,7 @@ ARG INSTALL_DEV=false

COPY . /app

RUN bash -c "if [ $INSTALL_DEV == 'true' ] ; then poetry install --no-root ; else poetry install --no-root --no-dev ; fi"
RUN bash -c "if [ $INSTALL_DEV == 'true' ] ; then poetry install --no-root ; else poetry install --no-root --only main ; fi"

ENV PYTHONPATH=/app

Expand Down

0 comments on commit fa94a28

Please sign in to comment.