FROM node:20.10.0 WORKDIR /app COPY . . RUN npm install RUN npm run build EXPOSE 6080 CMD ["npm", "run", "start"]