docker-node icon indicating copy to clipboard operation
docker-node copied to clipboard

NodeJS v20 freezes when building for multiarch

Open githubsaturn opened this issue 1 year ago • 0 comments

Reproducible case: https://github.com/githubsaturn/multiarch-node-issue

The project has 2 simple workflows, one for v18, one for v20. Other than the nodejs version, everything else is identical. The workflow works just fine for v18, but it freezes when using v20.

Dockerfile is pretty simple, here is the v18 one:

FROM node:18-alpine

RUN echo "Node 18"
RUN node -v
RUN npm -v
RUN echo "Finished Node 18"

image

githubsaturn avatar Oct 19 '24 22:10 githubsaturn