27 lines
765 B
Docker
27 lines
765 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 ./
|
||
|
|
RUN npm ci
|
||
|
|
|
||
|
|
# 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"]
|