Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 250 Bytes

Dockerfile.adoc

File metadata and controls

10 lines (6 loc) · 250 Bytes

A default command that can be replaced by any command

CMD [ "zsh" ]

An entry command that can’t be replaced and needs arguments

NB: CMD will supply default arguments

ENTRYPOINT [ "perl" ]
CMD [ "-e", "print 'Perl script expected\n'" ]