| <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> |