Spaces:
Sleeping
Sleeping
File size: 265 Bytes
caa5775 c67efd0 4fe0cf6 ff4c422 4fe0cf6 c67efd0 4fe0cf6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.11.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install -r /code/requirements.txt
RUN curl -fsSL https://ollama.com/install.sh | sh
RUN ollama serve &
RUN ollama run phi3
COPY . .
CMD ["gunicorn", "-w", "20", "main:app"] |