All checks were successful
CI / Unit & Component Tests (pull_request) Successful in 3m51s
CI / OCR Service Tests (pull_request) Successful in 22s
CI / Backend Unit Tests (pull_request) Successful in 3m41s
CI / fail2ban Regex (pull_request) Successful in 45s
CI / Semgrep Security Scan (pull_request) Successful in 23s
CI / Compose Bucket Idempotency (pull_request) Successful in 1m4s
pdfjs-dist resolves to 5.7.284, which requires Node >=22.13.0 || >=24. With engine-strict=true in .npmrc, npm ci hard-fails on the Node 20 base image, so the frontend dev server crash-loops (and a clean build fails). CI runs the frontend on Node 22 (Playwright image), so the committed lockfile already assumes 22. Bump all three Dockerfile stages to match. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
39 lines
1.8 KiB
Docker
39 lines
1.8 KiB
Docker
# syntax=docker/dockerfile:1.7
|
|
|
|
# ── Development ──────────────────────────────────────────────────────────────
|
|
# Used by docker-compose.yml (target: development). Source is bind-mounted in
|
|
# dev so the COPY . below is effectively replaced at runtime; the layer still
|
|
# exists so the image is self-contained for cold starts (e.g. devcontainer).
|
|
FROM node:22-alpine3.21 AS development
|
|
WORKDIR /app
|
|
COPY package.json package-lock.json ./
|
|
RUN npm ci
|
|
COPY . .
|
|
EXPOSE 5173
|
|
CMD ["npm", "run", "dev"]
|
|
|
|
# ── Build ────────────────────────────────────────────────────────────────────
|
|
# Compiles the SvelteKit Node-adapter output to /app/build.
|
|
FROM node:22-alpine3.21 AS build
|
|
WORKDIR /app
|
|
# VITE_SENTRY_DSN is a build-time variable — Vite bakes it into the bundle.
|
|
# Passed via docker-compose build.args; empty string disables the SDK.
|
|
ARG VITE_SENTRY_DSN
|
|
ENV VITE_SENTRY_DSN=$VITE_SENTRY_DSN
|
|
COPY package.json package-lock.json ./
|
|
RUN npm ci
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
# ── Production ───────────────────────────────────────────────────────────────
|
|
# Self-contained Node server. `node build` is the adapter-node entrypoint.
|
|
FROM node:22-alpine3.21 AS production
|
|
WORKDIR /app
|
|
ENV NODE_ENV=production
|
|
COPY --from=build /app/build ./build
|
|
COPY --from=build /app/package.json ./package.json
|
|
COPY --from=build /app/package-lock.json ./package-lock.json
|
|
RUN npm ci --omit=dev --ignore-scripts
|
|
EXPOSE 3000
|
|
CMD ["node", "build"]
|