FROM node:22-alpine WORKDIR /app COPY . . RUN npm i RUN npm run build CMD ["npm", "run", "preview"] EXPOSE 4173