23 lines
580 B
Docker
23 lines
580 B
Docker
# Dockerfile
|
|
FROM python:slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Only what you actually need (ffmpeg kept for video/thumbs)
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends ffmpeg && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install deps first for better layer caching
|
|
COPY requirements.txt .
|
|
RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy the rest of the app
|
|
COPY . .
|
|
|
|
# Entrypoint controls migrations, background worker, and Gunicorn
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
EXPOSE 5000
|
|
ENTRYPOINT ["/entrypoint.sh"] |