fury-bot / Dockerfile
robinroy03's picture
Update Dockerfile
4fe0cf6 verified
raw
history blame
246 Bytes
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 run phi3
COPY . .
CMD ["gunicorn", "-w", "20", "main:app"]