Files
E2E-Monitoring/Dockerfile
timm ff36c944b3 a
2025-04-19 01:59:11 +02:00

10 lines
158 B
Docker

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"]