We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d02eef commit 94eacb7Copy full SHA for 94eacb7
Makefile
@@ -3,11 +3,12 @@ CLOUDBUILD_PLAYGROUND_TRIGGER_ID := $(shell jq -r .id ${CLOUDBUILD_PLAYGROUND_TR
3
CLOUDBUILD_GO_TRIGGER_JSON := deploy/go_trigger.json
4
CLOUDBUILD_GO_TRIGGER_ID := $(shell jq -r .id ${CLOUDBUILD_GO_TRIGGER_JSON})
5
GCLOUD_ACCESS_TOKEN := $(shell gcloud auth print-access-token)
6
+LATEST_GO := $(shell go run ./cmd/latestgo)
7
8
.PHONY: docker test update-cloudbuild-trigger
9
10
docker:
- docker build -t golang/playground .
11
+ docker build --build-arg GO_VERSION=$(LATEST_GO) -t golang/playground .
12
13
runlocal:
14
docker network create sandnet || true
0 commit comments