Skip to content

Commit

Permalink
chore: poetry --no-dev being deprecated, use --only main instead (#171)
Browse files Browse the repository at this point in the history
* chore: poetry --no-dev being deprecated, use --without dev instead

* chore: poetry --no-dev being deprecated, use --only main instead
  • Loading branch information
paulfouquet authored Nov 10, 2022
1 parent 4d1e9f9 commit 8e89d2f
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 @@ -14,7 +14,7 @@ COPY poetry.lock pyproject.toml /app/

# Install Python dependencies
RUN poetry config virtualenvs.create false \
&& poetry install --no-dev --no-interaction --no-ansi
&& poetry install --only main --no-interaction --no-ansi

# Copy Python scripts
COPY ./scripts/ /app/scripts/
Expand Down

0 comments on commit 8e89d2f

Please sign in to comment.