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