Simple go application running a webserver.
It reads the COLOR environment variable and responds its value when requesting /.
docker run --rm -p 8080:8080 -e COLOR=blue ghcr.io/bapturp/colorapp:latest
curl http://localhost:8080/
COLOR=blue go run colorapp.go