all: test with the latest released Go version

This change updates the Makefile to call ./cmd/latestgo, which returns
the latest tagged version of Go. This is how CI also builds the
playground. Now, local testing is more similar.

Change-Id: I825ddb08573fade2c7451dcd44f97bd25c2253fa
Reviewed-on: https://go-review.googlesource.com/c/playground/+/297635
Trust: Alexander Rakoczy <alex@golang.org>
Run-TryBot: Alexander Rakoczy <alex@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
diff --git a/Makefile b/Makefile
index e670713..de22119 100644
--- a/Makefile
+++ b/Makefile
@@ -3,11 +3,12 @@
 CLOUDBUILD_GO_TRIGGER_JSON := deploy/go_trigger.json
 CLOUDBUILD_GO_TRIGGER_ID := $(shell jq -r .id ${CLOUDBUILD_GO_TRIGGER_JSON})
 GCLOUD_ACCESS_TOKEN := $(shell gcloud auth print-access-token)
+LATEST_GO := $(shell go run ./cmd/latestgo)
 
 .PHONY: docker test update-cloudbuild-trigger
 
 docker:
-	docker build -t golang/playground .
+	docker build --build-arg GO_VERSION=$(LATEST_GO) -t golang/playground .
 
 runlocal:
 	docker network create sandnet || true