Files
roboco/docker/panel.Dockerfile
T

77 lines
2.9 KiB
Docker
Raw Normal View History

2026-04-20 15:10:54 +02:00
# RoboCo Control Panel Dockerfile
# Multi-stage build for optimized production image.
# Build context is the project root so the backend and panel share one
# Dockerfile layout under docker/. Paths below are relative to project root.
# =============================================================================
# Base stage
# =============================================================================
FROM node:22-alpine AS base
# Activate the exact version panel/package.json pins (packageManager: pnpm@11.10.0)
# rather than trusting corepack's bundled default — a future node:22-alpine that
# ships a different pnpm would silently change the build's package manager.
# prepare --activate pins the shim to 11.10.0 so corepack and packageManager agree.
RUN corepack enable pnpm && corepack prepare pnpm@11.10.0 --activate
2026-04-20 15:10:54 +02:00
# =============================================================================
# Build stage
# =============================================================================
FROM base AS builder
WORKDIR /app
2026-05-09 03:15:09 +02:00
# pnpm 11 prompts for confirmation on modules-purge unless told this is CI.
ENV CI=true
# Copy package manifests first (for layer caching). pnpm-workspace.yaml
# carries the `allowBuilds` map (sharp, unrs-resolver) — without it pnpm 11
# hard-errors with [ERR_PNPM_IGNORED_BUILDS] (exit 1) on sharp's postinstall.
COPY panel/package.json panel/pnpm-lock.yaml panel/pnpm-workspace.yaml ./
2026-04-20 15:10:54 +02:00
# Install dependencies with shamefully-hoist to flatten node_modules
# (prevents symlink issues with styled-jsx and other peer deps). With the
# allowBuilds approval in pnpm-workspace.yaml, sharp and unrs-resolver run
# their postinstall scripts and install their platform-specific binaries —
# no strictDepBuilds downgrade needed.
2026-05-09 03:15:09 +02:00
RUN pnpm install \
--frozen-lockfile \
--shamefully-hoist
2026-04-20 15:10:54 +02:00
# Copy panel source code
COPY panel/ ./
# Build the application
# NOTE: No NEXT_PUBLIC_* env vars set here - we use relative URLs
# which nginx proxies to the orchestrator
RUN pnpm build
# =============================================================================
# Production stage
# =============================================================================
FROM base AS runner
WORKDIR /app
ENV NODE_ENV=production
# Create non-root user
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
# Copy public assets. Must be chowned to the runtime user (nextjs) like the
# standalone/static copies below — without it the assets stay root:root
# rwxrwx--- and the non-root nextjs process gets EACCES serving them, so every
# /public file (e.g. roboco-logo.png) 500s.
COPY --from=builder --chown=nextjs:nodejs /app/public ./public
2026-04-20 15:10:54 +02:00
# Copy standalone build
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
USER nextjs
EXPOSE 3000
ENV PORT=3000
ENV HOSTNAME="0.0.0.0"
CMD ["node", "server.js"]