My ENTRYPOINT script doesn\'t execute and throws standard_init_linux.go:175: exec user process caused \"no such file or directory\". Why so?
ENTRYPOINT
standard_init_linux.go:175: exec user process caused \"no such file or directory\"
My case was that the alpine image I was using didn't come with bash at all... RUN apk-install bash did the trick obviously
RUN apk-install bash