African-voice / Dockerfile
OlameMend's picture
fix path
a7cbfab
raw
history blame contribute delete
390 Bytes
FROM python:3.10.17-slim
ENV NUMBA_DISABLE_JIT_CACHE=1
ENV NUMBA_CACHE_DIR=/tmp/numba_cache
RUN apt-get update && apt-get install -y \
ffmpeg \
libsndfile1 \
git \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "app.app:app", "--host", "0.0.0.0", "--port", "7860"]