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
The following error occurs when attempting to run the docker image on a Raspberry Pi 4 with Alpine 3.14, causing the container to stop:
standard_init_linux.go:228: exec user process caused: exec format error
I believe this is due to the Alpine version in the Dockerfile being specified as 3.13.6, which might not support ARM 64 CPU architecture. Alpine's Official Dockerhub Image specifies the following tags as being supported:
The following error occurs when attempting to run the docker image on a Raspberry Pi 4 with Alpine 3.14, causing the container to stop:
standard_init_linux.go:228: exec user process caused: exec format error
I believe this is due to the Alpine version in the Dockerfile being specified as 3.13.6, which might not support ARM 64 CPU architecture. Alpine's Official Dockerhub Image specifies the following tags as being supported:
Updating the Dockerfile from
ARG alpine_version=3.13.6
=>ARG alpine_version=3.14.3
resolves the issue on my device.The text was updated successfully, but these errors were encountered: