add daily #reminder channel clearing

This commit is contained in:
Rene Kievits
2024-11-16 00:13:50 +01:00
parent 2732ce6c2b
commit 0333a2501f
4 changed files with 55 additions and 34 deletions

View File

@@ -1,13 +1,13 @@
FROM node:latest
FROM node:23
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
RUN npm ci
COPY . .
EXPOSE 3000
CMD ["node", "src/index.js"]
CMD ["npm", "run", "prod", "src/index.js"]