Full wage cost reporting app — weekly/monthly views, rolling 12-week/12-month history, budget management, Workforce API sync with SSE backfill, net sales via forecasting public API, department filter, CSV export. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
136 B
Docker
7 lines
136 B
Docker
FROM node:22-alpine
|
|
WORKDIR /app
|
|
COPY package.json .
|
|
RUN npm install --omit=dev
|
|
COPY src ./src
|
|
EXPOSE 3001
|
|
CMD ["node", "src/index.js"]
|