QA-ChatBot / Dockerfile
hardik-0212's picture
Upload folder using huggingface_hub
48cfc20 verified
raw
history blame contribute delete
373 Bytes
FROM python:3.10
WORKDIR /app
RUN mkdir -p /tmp/huggingface && chmod -R 777 /tmp/huggingface
ENV HF_HOME=/tmp/huggingface
ENV TRANSFORMERS_CACHE=/tmp/huggingface
ENV HUGGINGFACE_HUB_CACHE=/tmp/huggingface
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["sh", "-c", "uvicorn app:app --host 0.0.0.0 --port ${PORT:-7860}"]