box: go 1.9.4

This commit is contained in:
Cadey Ratio 2018-02-08 22:51:17 -08:00
parent 8146f1138e
commit f654e00827
1 changed files with 4 additions and 4 deletions

8
box.rb
View File

@ -1,7 +1,7 @@
from "xena/go-mini:1.9.2"
from "xena/go-mini:1.9.4"
### setup go
run "go1.9.2 download"
run "go1.9.4 download"
### Copy files
run "mkdir -p /site"
@ -27,11 +27,11 @@ files.each { |x| put x }
copy "vendor/", "/root/go/src/"
### Build
run "cd /site && go1.9.2 build -v"
run "cd /site && go1.9.4 build -v"
### Cleanup
run %q[ rm -rf /root/go /site/backend /root/sdk /site/*.go ]
run %q[ apk del go1.9.2 ]
run %q[ rm -rf /usr/local/bin/go* ]
cmd "/site/run.sh"