I want to remove entrypoint from Dockerfile, but parent image has a entrypoint.
how do I can remove it?
I want to remove entrypoint from Dockerfile, but parent image has a entrypoint.
how do I can remove it?
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
There are two ways to go about it :
If you want the override to happen at build time , then create a docker file for child image and specify the new Entrypoint there
FROM PARENT_IMAGE
ENTRYPOINT [new_entry_point]
2.Another way would be to do the override at the runtime , i.e, by using the --entrypoint
flag:
docker run --entrypoint=/bin/bash CHILD_IMAGE
If you use docker-compose, entrypoint directive will override the one in Dockerfile.
Add this in your docker-compose.yml:
entrypoint: /the/entrypoint/I_want.sh
command: first_argument_to_be_executed