You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We see occasional unexpected EOF errors when running multi-stage docker builds with buildkit enabled (unfortunately not 100% reproducible). I guess it was supposed to be fixed by moby/moby#40993, but it looks like there are some edge cases that are not yet fixed. Crash logs are attached
FROM public.ecr.aws/peakon/node:14.15.4-buster-builder AS builder
FROM public.ecr.aws/peakon/node:14.15.4-buster-runtime AS web
COPY --from=builder --chown=peakon /app/node_modules node_modules
COPY --chown=peakon . .
RUN rm -f .npmrc
CMD [ "node", "start_web.js" ]
FROM web as clock
CMD [ "node", "start_clock.js" ]
FROM web as worker
CMD [ "node", "start_worker.js" ]
FROM web as release
CMD [ "npm", "run", "migrate:fast" ]
FROM web
We see occasional
unexpected EOF
errors when running multi-stage docker builds with buildkit enabled (unfortunately not 100% reproducible). I guess it was supposed to be fixed by moby/moby#40993, but it looks like there are some edge cases that are not yet fixed. Crash logs are attachedDockerfile
docker system info
dockerd log
dockerd-crash.log
The text was updated successfully, but these errors were encountered: