FROM node:22-alpine ENV PORT=80 WORKDIR /app COPY . . RUN npm ci CMD ["npm", "run", "start"]