File size: 698 Bytes
54bef2f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Python base image
FROM python:3.10-slim
# Set a working directory
WORKDIR /app
# Copy requirements first for better caching
COPY requirements.txt .
# Install system dependencies (ffmpeg for audio, etc)
RUN apt-get update && \
apt-get install -y ffmpeg git && \
pip install --upgrade pip && \
pip install -r requirements.txt && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Copy rest of your app
COPY . .
# Environment variables (set these securely in production)
ENV PYTHONUNBUFFERED 1
# Expose FastAPI default port
EXPOSE 8000
# Command to run your backend (edit as needed)
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--workers", "2"]
|