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\"
the vault:latest image does not contain /bin/bash which you try to call with your shebang #!/bin/bash. You should either change that to #!/bin/sh or completely remove the shebang from your script.
vault:latest
/bin/bash
#!/bin/bash
#!/bin/sh