So earlier I had error 348 which was resolved by adding the missing shebang in my entrypoint script.
However, a few hours later, a similar problem turned up. I tried various things but eventually noticed that if I pulled the image directly from docker hub, I get either of these errors:
docker: Error response from daemon: OCI runtime create failed: container_linux.go:348: starting container process caused "exec: \"pipe.sh\": executable file not found in $PATH": unknown.
or
standard_init_linux.go:190: exec user process caused "exec format error"
These errors don’t occur if I git pull
and docker build
, then docker run
the locally built image.
Does anyone know how to solve this issue?