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* ./
|
|
|
|
|
RUN npm install
|
|
|
|
|
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 ./
|
|
|
|
|
RUN python -m pip install --upgrade pip \
|
|
|
|
|
&& python -m pip install -r requirements.txt
|
2026-04-15 09:27:29 +12:00
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
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-04-15 21:25:03 +12:00
|
|
|
RUN mkdir -p /app/cache /app/output
|
|
|
|
|
|
2026-04-15 09:27:29 +12:00
|
|
|
EXPOSE 8500
|
|
|
|
|
|
2026-04-15 21:25:03 +12:00
|
|
|
CMD ["python", "-m", "uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8500"]
|