gigafibre-fsm/apps/dispatch/Dockerfile
louispaulb 7da22ff132 merge: import dispatch-app into apps/dispatch/ (17 commits preserved)
Integrates the Dispatch PWA (Vue/Quasar) into the gigafibre-fsm monorepo.
Full git history accessible via `git log -- apps/dispatch/`.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 08:08:51 -04:00

15 lines
259 B
Docker

FROM node:20-alpine
WORKDIR /app
# Install dependencies first (cached layer)
COPY package*.json ./
RUN npm install
# Copy source and build
COPY . .
RUN npm run build
# The built app lives in /app/dist/pwa/
# It is extracted by deploy.sh using `docker cp`