Skip to content

Fix Dockerfile by removing invalid Poetry Config #211

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix Dockerfile by removing invalid Poetry
  • Loading branch information
BountyHunter1999 authored Apr 19, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 95ab0ce36d9adfb34e566c17403b6b2013ff8ff3
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -6,7 +6,6 @@ WORKDIR /app
RUN uv pip install --system poetry poetry-plugin-export
COPY pyproject.toml poetry.lock ./
RUN uv venv /venv && \
poetry config warnings.export false && \
poetry export -f requirements.txt -o requirements.txt && \
VIRTUAL_ENV=/venv uv pip install -r requirements.txt
COPY . .