This commit is contained in:
timm
2025-04-19 01:59:11 +02:00
parent 58ff5be5d9
commit ff36c944b3
10 changed files with 175 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:20-slim
WORKDIR /app
COPY package.json ./
RUN npm install
COPY test /app/test
COPY scheduler.js /app/scheduler.js
EXPOSE 3000
CMD ["npm", "start"]