A Dockerized hello world Go application
The application image is published on Docker Hub: https://hub.docker.com/repository/docker/devmertins/hello-go-docker
To pull the image:
$ docker pull devmertins/hello-go-docker
To run the image:
$ docker run -it --rm devmertins/hello-go-docker
To run the application locally (Go is required):
$ go run .