diff --git a/box.rb b/box.rb index 316b5e6..0e7ea00 100644 --- a/box.rb +++ b/box.rb @@ -1,21 +1,19 @@ -$goVer = "1.9" +$goVer = "1.9.2" $repoPath = "git.xeserv.us/xena/route" from "xena/go-mini:#{$goVer}" -run "go download" +run "go#{$goVer} download" [ "vendor", "internal", "proto", "cmd", - "plugins", - "doc", ].each { |x| copy x+"/", "/root/go/src/#{$repoPath}/#{x}" } run "apk --no-cache add build-base" -run "go build -v #{$repoPath}/cmd/... && go install -v #{$repoPath}/cmd/..." +run "go#{$goVer} build -v #{$repoPath}/cmd/... && go#{$goVer} install -v #{$repoPath}/cmd/..." run "apk del build-base" [ @@ -26,7 +24,7 @@ run "apk del build-base" tag "xena/route:thick" -run "apk del go1.9 && rm -rf /root/sdk /root/go" +run "apk del go#{$goVer} && rm -rf /root/sdk /root/go" flatten tag "xena/route:latest"