Pattern: Ineffective ENTRYPOINT
instruction
Issue: -
Only the last ENTRYPOINT
instruction in the Dockerfile
will have an effect.
Example of incorrect code:
FROM busybox
ENTRYPOINT /bin/true
ENTRYPOINT /bin/false
Example of correct code:
FROM busybox
ENTRYPOINT /bin/false