shahzaib201's picture
Update Dockerfile
1ba3eca verified
raw
history blame
No virus
309 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./TherapyBeagle-11B-v1-GGUF /code/TherapyBeagle-11B-v1-GGUF
COPY ./main.py /code/main.py
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]