반응형
shell script 작성 후 shell script를 실행 시키는 image 를 Alpine linux 로 이미지 생성 후 Pod 실행시
No such file or directory 에러가 발생하였다.
확인해보니 shell script 제일 상단에 #!/bin/bash 가 문제였고
Alpine linux 의 경우 shell script 제일 상단에 #!/bin/sh 로 해주어야한다.
#!/bin/bash -> #!bin/sh
bash를 사용해야하는 경우라면 bash를 추가해서 사용하면 된다.
apk add bash
반응형