Files
OSIT-AE-App-Svelte/Dockerfile
Scott Idem 8062006a21 fix(docker): copy scripts/ before npm install; skip postinstall in deploy stage
The postinstall hook (scripts/postinstall.mjs) runs during `npm install`, but the
Dockerfile only copied package*.json before that step, so the script wasn't present.

- Copy scripts/ alongside package*.json in the builder stage.
- Add --ignore-scripts to the deploy-stage npm install: flowbite-svelte is a
  devDependency and won't be installed there, so the postinstall patch is irrelevant
  and the script file won't be available in that stage anyway.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-22 18:39:06 -04:00

67 lines
2.3 KiB
Docker

# Stage 1: Build the application
FROM node:24-alpine AS builder
WORKDIR /app
# Install dependencies first for better Docker layer caching.
# scripts/ must be copied before npm install because postinstall.mjs runs during install.
COPY package*.json ./
COPY scripts/ ./scripts/
RUN npm install
# Copy the rest of the source code.
COPY . .
# Build Argument to determine build environment (dev, test, prod).
ARG BUILD_MODE=dev
ENV NODE_ENV=production
# Sync the SvelteKit project to generate ./.svelte-kit/tsconfig.json
RUN npx svelte-kit sync
# Perform the build based on the BUILD_MODE argument.
# Each script uses vite --mode <name>, which reads .env.<name> directly — no cp hack needed.
RUN if [ "$BUILD_MODE" = "prod" ] || [ "$BUILD_MODE" = "production" ]; then \
npm run build:prod; \
elif [ "$BUILD_MODE" = "test" ]; then \
npm run build:test; \
else \
npm run build:dev; \
fi
# Copy the source env file to .env.runtime for the deploy stage.
# PUBLIC_* vars are baked into the JS bundle by vite; non-PUBLIC vars (AE_CFG_ID,
# AE_APP_NODE_PORT) are read by the Node server at runtime and need this file.
RUN if [ "$BUILD_MODE" = "prod" ] || [ "$BUILD_MODE" = "production" ]; then \
cp .env.prod .env.runtime; \
elif [ "$BUILD_MODE" = "test" ]; then \
cp .env.test .env.runtime; \
else \
cp .env.dev .env.runtime; \
fi
# Stage 2: Final runtime image
FROM node:24-alpine AS deploy-node
WORKDIR /app
# Copy built files and package info.
COPY --from=builder /app/build .
COPY --from=builder /app/package.json .
COPY --from=builder /app/package-lock.json .
# Install only production dependencies.
# --ignore-scripts skips postinstall (which patches flowbite-svelte dist files);
# flowbite-svelte is a devDependency and won't be installed here anyway.
RUN npm install --omit=dev --ignore-scripts
# Copy the runtime env file (non-PUBLIC vars for the Node server).
COPY --from=builder /app/.env.runtime .env
# SvelteKit (via adapter-node) defaults to port 3000.
EXPOSE 3000
# Healthcheck to verify the app is running
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD node -e "fetch('http://localhost:3000/health').then(r => r.ok ? process.exit(0) : process.exit(1)).catch(() => process.exit(1))"
CMD ["node", "index.js"]