This is a simple go app that I built because I wanted a containerizable application I could use if I ran into something container-related that I wanted to test.
Uses Go 1.13, or Docker.
go run app.go
This will use port 8080 by default.
docker run -p 8080:8080 docker.io/jemisonf/simple_go_app
This will start the server on port 8080 of your local machine.