This is a light-weight and simple docker image that runs a simple file server and returns the MESSAGE environment variable.
To build and run:
docker buildx build . \
--platform linux/arm/v7,linux/arm64/v8,linux/amd64 \
--tag gbt55/nomad-hello-world \
--push
docker run -p 8008:8008 --env MESSAGE="¡Hola Mundo!" gbt55/nomad-hello-worldThis image is hosted by DockerHub as gbt55/nomad-hello-world.
This repo was inspired by crccheck/docker-hello-world.