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
I tried rebuilding one of our images that uses the node:20-alpine but without success. The image we use has not been changed for a while so this seemed like a new issue since alpine 19/20. Using the node:20-alpine3.18 version of this image does solve the problem.
Current Behavior
After a while, the build process fails throwing this error:
qemu: uncaught target signal 11 (Segmentation fault) - core dumped
After the process keeps hanging without stopping itself.
Possible Solution
Steps to Reproduce
Used Dockerfile
FROM node:20-alpine
ADD . /app
WORKDIR /app
RUN apk update
RUN apk add python3 vim make gcc g++ curl
RUN yarn install
Additional Information
The text was updated successfully, but these errors were encountered:
Environment
Expected Behavior
I tried rebuilding one of our images that uses the
node:20-alpine
but without success. The image we use has not been changed for a while so this seemed like a new issue since alpine 19/20. Using thenode:20-alpine3.18
version of this image does solve the problem.Current Behavior
After a while, the build process fails throwing this error:
After the process keeps hanging without stopping itself.
Possible Solution
Steps to Reproduce
Used Dockerfile
Additional Information
The text was updated successfully, but these errors were encountered: