blob: 8e17e7458ef8b78ee6cdb8e34b676901afa30815 [file]
<p>
<b>ENTRYPOINT</b> configures a container that will be run as an executable.
</p>
<br/>
<p>
There are two ways to specify an ENTRYPOINT: the (preferred) exec form
<br/>
<pre>
ENTRYPOINT ["executable", "param1", "param2"]
</pre>
<br/>
and the shell form:
<br/>
<pre>
ENTRYPOINT command param1 param2
</pre>
</p>