Build out and push automatic report generation, remove emailing of every report indiidially

This commit is contained in:
Fred Boniface
2025-07-10 12:41:41 +01:00
parent bc642ce0a8
commit 997c758403
19 changed files with 507 additions and 338 deletions

View File

@@ -0,0 +1,10 @@
FROM node:18-alpine
RUN apk add --no-cache tzdata
ENV TZ=Europe/London
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install --production
COPY . .
CMD ["node", "index.js"]