FROM node:latest WORKDIR /app COPY . . RUN npm install && npm run build EXPOSE 3000 ENTRYPOINT ["npx", "serve", "-S", "dist"]