Some checks failed
CI / Unit & Component Tests (pull_request) Successful in 3m9s
CI / OCR Service Tests (pull_request) Successful in 15s
CI / Backend Unit Tests (pull_request) Successful in 4m31s
CI / fail2ban Regex (pull_request) Successful in 38s
CI / Compose Bucket Idempotency (pull_request) Successful in 59s
CI / OCR Service Tests (push) Has been cancelled
CI / Backend Unit Tests (push) Has been cancelled
CI / fail2ban Regex (push) Has been cancelled
CI / Compose Bucket Idempotency (push) Has been cancelled
CI / Unit & Component Tests (push) Has been cancelled
The production stage runs npm ci --omit=dev to install runtime deps for the pre-built SvelteKit app. The postinstall script calls patch-package, which is a devDependency, so it is absent and causes exit code 127. --ignore-scripts is the correct npm-native fix: no lifecycle scripts are needed when installing into a pre-built image. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
35 lines
1.6 KiB
Docker
35 lines
1.6 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:20.19.0-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:20.19.0-alpine3.21 AS build
|
|
WORKDIR /app
|
|
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:20.19.0-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"]
|