I have a base image I cannot modify in this case. The entrypoint of the image is python3, but I have a docker run in which I would like to make /bin/bash the entrypoint. The point is, I want to put the -c and -l flags in the /bin/bash command.
To clarify, I would like the equivalent of
ENTRYPOINT ["/bin/bash", "-l", "-c"]
but when I run the docker run --entrypoint /bin/bash <image> command