Spaces:
Sleeping
Sleeping
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"] | |