AI-API-AR / Dockerfile
Anicet
first commit
b62fe62
Raw
History Blame Contribute Delete
219 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y git ffmpeg
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]