Spaces:
Build error
Build error
File size: 396 Bytes
aa07a32 3a77aaf aa07a32 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Download Gemma-2B model
RUN wget https://huggingface.co/google/gemma-1.1-2b-it-GGUF/tree/main?show_tensors=2b_it_v1p1.gguf -O /code/2b_it_v1p1.gguf
COPY ./main.py /code/main.py
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|