Files
repomix-mirror/website/server/Dockerfile
Kazuki Yamada 042750cb4e chore(ci): Replace npm run with node --run in workflows
Now that the minimum supported Node.js version is 22, `node --run` is
available everywhere. It avoids the npm process-spawn overhead and
matches the style already used in package.json scripts.

Affects all GitHub Actions workflows that invoke npm scripts and the
website/server Dockerfile bundle step. `npm ci` is left as-is since it
is npm-specific.
2026-05-09 19:08:10 +09:00

63 lines
1.9 KiB
Docker

# ==============================================================================
# Build stage
# ==============================================================================
FROM node:24-alpine AS builder
# Install git (required for GitHub-based npm dependencies)
RUN apk add --no-cache git
# Downgrade npm to avoid --min-release-age conflict with --before for git deps
RUN npm install -g npm@11.4.0
WORKDIR /app
COPY package*.json ./
# Install all dependencies (including dev dependencies for build)
RUN npm ci
# Copy source code and bundle
COPY . .
RUN node --run bundle
# ==============================================================================
# Runtime image
# ==============================================================================
FROM node:24-alpine
# Install git and ca-certificates (required by repomix for remote repository processing)
RUN apk add --no-cache git ca-certificates
# Downgrade npm to avoid --min-release-age conflict with --before for git deps (used by compose dev command)
RUN npm install -g npm@11.4.0
WORKDIR /app
# Copy bundled server and WASM files
COPY --from=builder /app/dist-bundled ./dist-bundled
# Copy external dependencies (cannot be bundled due to runtime requirements)
# - tinypool: spawns worker threads using file paths
COPY --from=builder /app/node_modules/tinypool ./node_modules/tinypool
# Copy warmup script for compile cache generation
COPY --from=builder /app/warmup.mjs ./warmup.mjs
# Set environment variables for bundled mode
# NODE_COMPILE_CACHE enables V8 compile cache to reduce cold start latency
ENV NODE_ENV=production \
PORT=8080 \
REPOMIX_WORKER_PATH=/app/dist-bundled/worker.mjs \
REPOMIX_WASM_DIR=/app/dist-bundled/wasm \
NODE_COMPILE_CACHE=/app/.compile-cache
# Generate compile cache at build time
# This pre-compiles all modules so cold starts use cached compiled code
RUN node warmup.mjs
# Expose port
EXPOSE 8080
# Start the bundled server
CMD ["node", "dist-bundled/server.mjs"]