FROM node:current WORKDIR /src COPY . ./ RUN rm -rf ./node_modules ./.next RUN npm install RUN npm run build CMD ["npm", "run", "start"]