.gvmi
format is used (which is based on Docker images). More information on this can be found in Converting image from Docker to Golem.Dockerfile
).Dockerfile
:FROM
command specifies what existing image we want to use as our base. In this case we're using Debian Linux in its version tagged as latest
. You can search for existing images using the Docker Hub./golem/input
) and one for outgoing ones (/golem/output
):/golem/input
).ENTRYPOINT
statement is effectively ignored and replaced with the exeunit's own entrypoint.Dockerfile
we can now build an image based on that file. To do so, we're going to use Docker's build
command:golem-example
to its output image. Once it's finished we should see the message Successfully tagged golem-example:latest
in the terminal's output.