medical / Dockerfile
Dama03's picture
ghh
0194ac3
raw
history blame contribute delete
465 Bytes
FROM python:3.10-slim
FROM python:3.10-slim
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
RUN apt-get update && apt-get install -y ffmpeg
ENV TRANSFORMERS_CACHE=/tmp/hf_cache
ENV HF_HOME=/tmp/hf_cache
ENV HUGGINGFACE_HUB_CACHE=/tmp/hf_cache
ENV SENTENCE_TRANSFORMERS_HOME=/tmp/hf_cache
ENV SENTENCE_TRANSFORMERS_CACHE=/tmp/hf_cache
ENV XDG_CACHE_HOME=/tmp/hf_cache
EXPOSE 7860
CMD ["uvicorn", "fastapi_app:app", "--host", "0.0.0.0", "--port", "7860"]