Search code examples
dockerdockerfile

How to remove entrypoint from parent Image in Dockerfile


I want to remove entrypoint from Dockerfile, but parent image has an entrypoint.

How can I remove it?


Solution

  • Per the discussion here, you should be able to reset the entrypoint with

    ENTRYPOINT []