Nurse_LLM_Demo / DockerFile
microhum's picture
Init: huggingface space rest api
b4525ce
raw
history blame
167 Bytes
FROM python:3.10.9
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]