Linux – Docker Error: standard_init_linux.go:175: exec user process caused “no such file or directory”

dockerlinux

Created docker file and image successfully build and contained is also created but status is exited.

Staus Exited in "docker ps -a"

Receiving an error while accessing the Docker and check logs also

standard_init_linux.go:175: exec user process caused "no such file or directory"

Below are the details of file: Dockerfile and command

Docker File:

Docker File Detail

Docker Command detail and error

Docker Command Deails

Best Answer

The container for your lamp image shows "/entrypoint.sh /bin/" as command, which fails.

I would update your ENTRYPOINT line in your Dockerfile to:

ENTRYPOINT ["/bin/bash", "/entrypoint.sh"] as you did with CMD, build the image and run it again.