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 3601e3f commit 32e2a51Copy full SHA for 32e2a51
.gitignore
@@ -1,3 +1,4 @@
1
/oidc-token-ferry
2
/oidc-token-ferry.darwin-amd64
3
/oidc-token-ferry.linux-amd64
4
+/oidc-token-ferry.windows-amd64
Makefile
@@ -1,6 +1,6 @@
PROGRAM = oidc-token-ferry
GO_PACKAGE = github.com/twz123/$(PROGRAM)
-BUILDER_IMAGE = docker.io/golang:1.9.2-alpine3.7
+BUILDER_IMAGE = docker.io/golang:1.10.1-alpine3.7
5
# binaries
6
DOCKER = docker
@@ -23,6 +23,7 @@ endef
23
24
$(eval $(call _os_arch_program,linux,amd64))
25
$(eval $(call _os_arch_program,darwin,amd64))
26
+$(eval $(call _os_arch_program,windows,amd64))
27
28
.PHONY: all
29
all: $(OS_ARCH_PROGRAMS)
0 commit comments