vite-plugin-pwa peer-depends on vite <=5 but project uses vite 7 (works fine); npm ci needs legacy-peer-deps which lives in .npmrc (now copied before install). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
27 lines
791 B
Docker
27 lines
791 B
Docker
# AppForge — single-service production image
|
|
# Builds the Vite frontend and runs the Express backend, which serves both the
|
|
# API (/api), uploaded files (/storage), and the built frontend (SPA).
|
|
|
|
FROM node:20-bookworm-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# System deps occasionally needed by build tooling
|
|
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install dependencies (full install — tsx/vite are needed for build & runtime)
|
|
COPY package.json package-lock.json .npmrc ./
|
|
RUN npm ci --legacy-peer-deps
|
|
|
|
# Copy source and build the frontend
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
ENV NODE_ENV=production
|
|
ENV PORT=3000
|
|
EXPOSE 3000
|
|
|
|
# The server applies the DB schema on boot (idempotent) and serves everything
|
|
CMD ["npm", "run", "start"]
|