Fix: Remove invalid 'poetry config warnings.export' command from Dockerfile

pull/217/head
sv-00 2 months ago committed by GitHub
parent 2b3b3d83ab
commit 0606380636
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -6,7 +6,6 @@ WORKDIR /app
RUN uv pip install --system poetry poetry-plugin-export RUN uv pip install --system poetry poetry-plugin-export
COPY pyproject.toml poetry.lock ./ COPY pyproject.toml poetry.lock ./
RUN uv venv /venv && \ RUN uv venv /venv && \
poetry config warnings.export false && \
poetry export -f requirements.txt -o requirements.txt && \ poetry export -f requirements.txt -o requirements.txt && \
VIRTUAL_ENV=/venv uv pip install -r requirements.txt VIRTUAL_ENV=/venv uv pip install -r requirements.txt
COPY . . COPY . .

Loading…
Cancel
Save