chore: use standardized @mintel base images and sync packages
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 5s
Build & Deploy / 🏗️ Build (push) Failing after 20s
Build & Deploy / 🧪 QA (push) Successful in 4m12s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🩺 Health Check (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s

This commit is contained in:
2026-02-11 15:47:02 +01:00
parent 6e4b59fcc5
commit 9e6a2fabee
4 changed files with 149 additions and 521 deletions

View File

@@ -1,13 +1,7 @@
# Stage 1: Builder
FROM node:20-alpine AS builder
FROM registry.infra.mintel.me/mintel/nextjs:latest AS builder
WORKDIR /app
# Install system dependencies
RUN apk add --no-cache libc6-compat curl
# Clean the workspace in case the base image is dirty
RUN rm -rf ./*
# Arguments for build-time configuration
ARG NEXT_PUBLIC_BASE_URL
ARG NEXT_PUBLIC_TARGET
@@ -23,23 +17,18 @@ ENV UMAMI_API_ENDPOINT=$UMAMI_API_ENDPOINT
ENV SKIP_RUNTIME_ENV_VALIDATION=true
ENV CI=true
# Set pnpm home and store directory for caching
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN mkdir -p /pnpm/store
# Enable pnpm
RUN corepack enable
# Copy workspace files for dependency installation
COPY pnpm-lock.yaml pnpm-workspace.yaml package.json .npmrc* ./
# Copy manifest files specifically for better layer caching
COPY pnpm-lock.yaml package.json .npmrc* ./
COPY apps/web/package.json ./apps/web/package.json
# Install dependencies with cache mount
# Install dependencies with cache mount and dynamic .npmrc (High Fidelity pattern)
RUN --mount=type=cache,id=pnpm,target=/pnpm/store \
--mount=type=secret,id=NPM_TOKEN \
export NPM_TOKEN=$(cat /run/secrets/NPM_TOKEN 2>/dev/null || echo $NPM_TOKEN) && \
pnpm install --frozen-lockfile
echo "@mintel:registry=https://npm.infra.mintel.me" > .npmrc && \
echo "//npm.infra.mintel.me/:_authToken=\${NPM_TOKEN}" >> .npmrc && \
pnpm install --frozen-lockfile && \
rm .npmrc
# Copy source code
COPY . .
@@ -48,27 +37,15 @@ COPY . .
RUN pnpm --filter @mintel/web build
# Stage 2: Runner
FROM node:20-alpine AS runner
FROM registry.infra.mintel.me/mintel/runtime:latest AS runner
WORKDIR /app
# Install system dependencies
RUN apk add --no-cache libc6-compat curl
ENV HOSTNAME="0.0.0.0"
ENV PORT=3000
ENV NODE_ENV=production
# Create non-root user for security
RUN addgroup --system --gid 1001 nodejs && \
adduser --system --uid 1001 nextjs
# Copy standalone output and static files (Monorepo paths)
COPY --from=builder --chown=nextjs:nodejs /app/apps/web/public ./apps/web/public
COPY --from=builder --chown=nextjs:nodejs /app/apps/web/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/apps/web/.next/static ./apps/web/.next/static
COPY --from=builder --chown=nextjs:nodejs /app/apps/web/.next/cache ./apps/web/.next/cache
USER nextjs
# Note: Base image already handles the non-root user and basic env
COPY --from=builder /app/apps/web/public ./apps/web/public
COPY --from=builder /app/apps/web/.next/standalone ./
COPY --from=builder /app/apps/web/.next/static ./apps/web/.next/static
COPY --from=builder /app/apps/web/.next/cache ./apps/web/.next/cache
# Start from the app directory to ensure references solve correctly
WORKDIR /app/apps/web