FROM node WORKDIR /app COPY package*.json ./ RUN yarn COPY . . EXPOSE 3000 CMD ["yarn", "start", "--host", "0.0.0.0"]