go router 5.0.5 기준 MaterialApp.router(routerConfig:_router) 를 적용하여 해결했습니다! 이 경우에는 routeInformationProvider, routeInformationParser, routerDelegate를 할당할 필요가 없는 것 같습니다.
context.push()는 동작해서 context.go() 대신에 context.push()를 사용하려고 하는데 프로젝트 진행에 문제가 없을까요? 별개로 궁금한 점이 있는데, context.go()는 context.push()와 달리 화면이 스택처럼 쌓이는 것이 아니라 그냥 말 그대로 이동이라고 보면 될까요? context.push() 가 Navigator.push()와 사실상 동일하고 context.go()가 Navigator.pushAndRemoveUntil()과 같다고 봐도 되는 지 궁금합니다.
해당 에러는 http:// 를 넣어주지 않아서 발생한 문제로 보입니다. 해결하였습니다. client/Dockerfile을 다음과 같이 수정하는 것으로 해결했습니다. 또한 server/Dockerfile에서도 CMD["npm","run","start:prd"]로 수정해야 하는 것을 확인했습니다. 해결하지 못 했습니다.
https://sharp.pixelplumbing.com/install#chinese-mirror 해당 링크를 통해 에러를 해결했습니다! client/Dockerfile을 FROM node:alpine ENV PORT 3000 WORKDIR /usr/src/app COPY package*.json ./ RUN npm config set sharp_binary_host "https://npmmirror.com/mirrors/sharp" RUN npm config set sharp_libvips_binary_host "https://npmmirror.com/mirrors/sharp-libvips" RUN npm install COPY ./ ./ ENV NODE_ENV production RUN npm run build:prod CMD ["npm","run","start:prod"] 로 수정하였습니다