OSS-BSS-Field-Dispatch/Dockerfile
louispaulb 5e6f20d871 Initial commit — dispatch app baseline before Quasar migration
Current state: custom CSS + vanilla Vue components
Architecture: modular with composables, provide/inject pattern
Ready for progressive migration to Quasar native components

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 13:35:49 -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`