FROM node:24-alpine RUN mkdir /app WORKDIR /app COPY . /app RUN npm install ENTRYPOINT ["node","/app/script/index.js"]