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 encountered an issue when running a container built from the provided Dockerfile on ARM-based systems (e.g., Apple M1/M2, Raspberry Pi, etc.). The dumb-init binary, downloaded during the build process, is hardcoded for the x86 architecture. As a result, the container fails to run on ARM platforms due to an architecture mismatch.
Steps to Reproduce:
1. Build the Dockerfile
2. Attempt to run the resulting Docker image on an ARM-based system.
3. The container fails to start with the error: /bin/sh: /usr/local/bin/dumb-init: cannot execute binary file
A fix will would allow the image to run successfully on both x86 and ARM platforms, increasing compatibility.
The text was updated successfully, but these errors were encountered:
Hello,
I encountered an issue when running a container built from the provided Dockerfile on ARM-based systems (e.g., Apple M1/M2, Raspberry Pi, etc.). The dumb-init binary, downloaded during the build process, is hardcoded for the x86 architecture. As a result, the container fails to run on ARM platforms due to an architecture mismatch.
Steps to Reproduce:
1. Build the Dockerfile
2. Attempt to run the resulting Docker image on an ARM-based system.
3. The container fails to start with the error:
/bin/sh: /usr/local/bin/dumb-init: cannot execute binary file
A fix will would allow the image to run successfully on both x86 and ARM platforms, increasing compatibility.
The text was updated successfully, but these errors were encountered: