FROM node:18.17.1 WORKDIR /app COPY package*.json . RUN npm install COPY . . RUN npm run build ENV PORT=8080 EXPOSE 8080 CMD ["npm", "start"]