1 2 3 4 5 6 7 8 9 10 11
FROM node:latest WORKDIR /app COPY . . RUN npm install && npm run build EXPOSE 3000 ENTRYPOINT ["npx", "serve", "-S", "dist"]