我想从Dockerfile中删除入口点,但是父映像具有入口点。
如何删除它?
Answers:
当您要覆盖run
命令中的入口点时:
例如,如果您要在容器中附加sh并在其中运行
docker run -it --entrypoint='' my-image sh
如果使用docker-compose,entrypoint指令将覆盖Dockerfile中的指令。
将此添加到您的docker-compose.yml中:
entrypoint: /the/entrypoint/I_want.sh
command: first_argument_to_be_executed