Spaces:
Sleeping
Sleeping
File size: 332 Bytes
6a26cdf eb8405f 6a26cdf eb8405f 6a26cdf eb8405f 6a26cdf |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
FROM python:3.11-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
COPY ./main.py /code/main.py
COPY ./Nous-Hermes-2-Mistral-7B-DPO.Q4_0.gguf /code/Nous-Hermes-2-Mistral-7B-DPO.Q4_0.gguf
RUN pip install --no-cache-dir -r /code/requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|