prana / Dockerfile
Daffaadityp's picture
Update Dockerfile
15f99d7 verified
Raw
History Blame Contribute Delete
284 Bytes
FROM python:3.11
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
# HF Spaces requires binding to host 0.0.0.0 and port 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]