aiml_gr16 / Dockerfile
SurajSingh's picture
Update Dockerfile
55ee9fc verified
raw
history blame contribute delete
367 Bytes
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
# you will also find guides on how best to write your Dockerfile
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --upgrade -r /code/requirements.txt
# RUN chmod 777 ./cache
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8001"]