Docker を用いて、 "Hello world" というメッセージ を JSON 形式で返す API
golang:latest
$ git clone https://github.com/aeleniumfor/coding_challenge_1.git
$ cd coding_challenge_1
$ docker build -t golang_app .
$ docker run -d -p 8080:8080 --rm golang_app
$ curl -LI http://localhost:8080/ -o /dev/null -w '%{http_code}' -s
$ curl -XGET -H 'Content-Type:application/json' http://localhost:8080/