Add shell or bash to a docker image (Distroless based on Debian GNU/Linux)
I want add shell or bash to my image to execute installation command. I have copied the /bin/bash on my VM on to my image on Dockerfile: COPY /bin/bash /bin/ But when I execute the docker command: docker run -it…