api / Dockerfile
SalexAI's picture
Update Dockerfile
6ed34e7 verified
raw
history blame contribute delete
421 Bytes
FROM python:3.11-slim
WORKDIR /app
# (Optional but strongly recommended) Install ffmpeg for audio utilities
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY app /app/app
EXPOSE 7860
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]