What happened
standard_init_linux.go:228: exec user process caused: exec format error
When
When I Apply Deployment.
Why
Docker image created by M1 Chip didn't work properly.
How to resolve
# it will not work
docker build -t {tag name} .
# it will work.
docker build --platform=linux/amd64 -t {tag name} .
Top comments (0)