extractor / Dockerfile
panduwana's picture
move to port 7860
6263fe3
raw
history blame contribute delete
267 Bytes
FROM python:latest
COPY . .
WORKDIR /
RUN pip install -r requirements.txt
RUN mkdir -p /transformers_cache && chmod -R 777 /transformers_cache
ENV HF_HOME=/transformers_cache
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]