FROM node:22-alpine WORKDIR /usr/src/app COPY package*.json ./ RUN npm i COPY . . RUN npm run build EXPOSE 3000 CMD ["node", "dist/server/index.js"]