summarization-api / Dockerfile
Anwar11234
modified Dockerfile
32d5243
raw
history blame
251 Bytes
FROM python:3.10.9
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
RUN mkdir -p /.cache/huggingface/hub \
&& chmod -R 777 /.cache/huggingface \
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]