Fix COPY destination for requirements_poetry.txt

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

View File

@ -211,7 +211,7 @@ RUN pip install poetry && poetry export -f requirements.txt \
FROM conda-install AS base FROM conda-install AS base
# Copy the requirements file generated from the poetry lock # Copy the requirements file generated from the poetry lock
COPY --from=poetry-requirements /usr/src/requirements_poetry.txt requirements_poetry.txt COPY --from=poetry-requirements /usr/src/requirements_poetry.txt server/requirements_poetry.txt
# Copy build artifacts from flash attention builder # Copy build artifacts from flash attention builder
COPY --from=flash-att-builder /usr/src/flash-attention/build/lib.linux-x86_64-cpython-311 /opt/conda/lib/python3.11/site-packages COPY --from=flash-att-builder /usr/src/flash-attention/build/lib.linux-x86_64-cpython-311 /opt/conda/lib/python3.11/site-packages