Spaces:
Build error
Build error
File size: 265 Bytes
83c8d6a 02e4733 83c8d6a 70f1eec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
FROM python:3.11
WORKDIR /code
COPY server/pdm.lock server/pyproject.toml ./
RUN pip install pdm
RUN pdm install
COPY server/ ./
ENV DEVICE cuda:0
ENV ATTN_IMPLEMENTATION flash_attention_2
ENV PDM_CACHE_DIR /code/.pdm_cache/
ENTRYPOINT [ "./entrypoint.sh" ]
|