I'm trying to run a bash script from a Docker Image on a Mac. Here is my Dockerfile
FROM bash ADD app.sh / ENTRYPOINT ["/bin/bash", "/app.sh"] Error
docker: Error response from daemon: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: "/bin/bash": stat /bin/bash: no such file or directory: unknown. This is a simple exercise in creating Docker Images where I need to execute app.sh when I run docker run.
Any idea what I'm doing wrong?