Files
embycovers/Dockerfile
T

42 lines
1.4 KiB
Docker
Raw Normal View History

2026-06-08 00:01:55 +12:00
# ── Stage 1: build the React SPA ─────────────────────────────────────────────
FROM node:20-slim AS frontend
WORKDIR /frontend
COPY frontend/package.json frontend/package-lock.json* ./
2026-06-08 21:58:16 +12:00
RUN npm ci || npm install
2026-06-08 00:01:55 +12:00
COPY frontend/ ./
RUN npm run build
# ── Stage 2: Python runtime ──────────────────────────────────────────────────
2026-04-15 09:27:29 +12:00
FROM python:3.11-slim
2026-04-15 21:25:03 +12:00
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1
2026-04-15 09:27:29 +12:00
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
fonts-dejavu-core \
fonts-liberation \
&& rm -rf /var/lib/apt/lists/*
2026-04-15 21:25:03 +12:00
COPY requirements.txt ./
2026-06-08 21:58:16 +12:00
RUN python -m pip install --no-cache-dir -r requirements.txt
2026-04-15 09:27:29 +12:00
2026-06-08 21:58:16 +12:00
# Copy only what the server actually runs — keeps the final image lean and avoids
# baking in frontend sources, tests, legacy scripts and unused root assets.
COPY app.py ./
COPY rotate_preroll.py ./
COPY services/ ./services/
COPY static/ ./static/
2026-04-15 09:27:29 +12:00
2026-06-08 00:01:55 +12:00
# Bring in the built SPA from the frontend stage.
COPY --from=frontend /frontend/dist ./frontend/dist
2026-06-08 21:58:16 +12:00
RUN mkdir -p /app/cache /app/output /app/logs
2026-04-15 21:25:03 +12:00
2026-04-15 09:27:29 +12:00
EXPOSE 8500
2026-06-08 21:58:16 +12:00
# Single worker (lean memory) and no access log (less CPU + log noise).
CMD ["python", "-m", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8500", "--no-access-log"]