Remove commas from poetry export --extras ...

This commit is contained in:
Alvaro Bartolome 2024-11-29 13:12:06 +00:00
parent a221dbb9a7
commit bbde434c40
No known key found for this signature in database

View File

@ -205,7 +205,7 @@ COPY server/poetry.lock poetry.lock
COPY server/pyproject.toml pyproject.toml
RUN pip install poetry && poetry export -f requirements.txt \
--extras "attention, bnb, accelerate, compressed-tensors, marlin, moe, quantize, peft, outlines" \
--extras "attention bnb accelerate compressed-tensors marlin moe quantize peft outlines" \
--output requirements_poetry.txt
FROM conda-install AS base