Spaces:
Sleeping
Sleeping
File size: 561 Bytes
6ce998e ef7e07c 6ce998e dd1baa0 c01f047 dd1baa0 6ce998e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
FROM python:3.12
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
RUN python -c "\
from huggingface_hub import hf_hub_download; \
hf_hub_download(\
repo_id='Qwen/Qwen2.5-1.5B-Instruct-GGUF', \
filename='qwen2.5-1.5b-instruct-q4_k_m.gguf', \
local_dir='.', \
local_dir_use_symlinks=False \
)"
COPY --chown=user . /app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|