I'm running below dockerfile, but I'm getting this error exec user process caused "no such file or directory
Dockerfile
FROM alpine:3.12
COPY entrypoint.sh /
RUN echo "hello"
ENTRYPOINT ["/entrypoint.sh"]
entrypoint.sh
#!/bin/bash
echo "START Running Docker"
I've my Dockerfile and entrypoint.sh in same directory - what's the mistake i'm doing here - could some please me to fix this issue.
Appreciated your help in advance!