How to remove entrypoint from parent Image on Dockerfile
Per the discussion here, you should be able to reset the entrypoint with
ENTRYPOINT []
When you want to override the entrypoint in the run
command:
For example if you want to attach and run sh inside the container
docker run -it --entrypoint='' my-image sh
Put this line in your Dockerfile
ENTRYPOINT []