captionai-server / Dockerfile
Isaacyn
add Dockerfile and requirements
9f64841
Raw
History Blame Contribute Delete
458 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y ffmpeg libsndfile1 git && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN python -c "from huggingface_hub import snapshot_download; snapshot_download('Isaacyn/fast-conformer-ctc-id-v6', local_dir='/app/models')"
EXPOSE 7860
CMD ["python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]