FROM node:alpine USER node WORKDIR /app COPY . . RUN yarn install && \ yarn build EXPOSE 3000 CMD ["yarn", "start"]