ENTRYPOINT

Insert an ENTRYPOINT instruction into the Dockerfile with args as its argument(s).


fun ENTRYPOINT(executable: String, vararg param: String): DockerfileBuilder

Insert an ENTRYPOINT instruction into the Dockerfile.

Parameters

executable

The entrypoint executable.

param

Parameters to pass into the executable.


fun ENTRYPOINT(form: DockerfileBuilder.Form, executable: String, vararg param: String): DockerfileBuilder

Insert an ENTRYPOINT instruction into the Dockerfile.

Parameters

form

The form of arguments to use in the Dockerfile.

executable

The entrypoint executable.

param

Parameters to pass into the executable.