Build out and push automatic report generation, remove emailing of every report indiidially
This commit is contained in:
10
auto-report-mail/Dockerfile
Normal file
10
auto-report-mail/Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user