aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2017-12-10 22:16:23 -0800
committerChristine Dodrill <me@christine.website>2017-12-10 22:16:23 -0800
commit0fc228b0d55e63a151a72492c6a2364998d20aba (patch)
tree86bc756fcb37a5ff14f2e03bc8ac04e17e4b4e74
parente01c9695e94ec18458ad7a32640619b262de6225 (diff)
downloadxesite-0fc228b0d55e63a151a72492c6a2364998d20aba.tar.xz
xesite-0fc228b0d55e63a151a72492c6a2364998d20aba.zip
box: update go
-rw-r--r--box.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/box.rb b/box.rb
index 87939da..ad38cf0 100644
--- a/box.rb
+++ b/box.rb
@@ -1,7 +1,7 @@
-from "xena/go-mini:1.8.1"
+from "xena/go-mini:1.9.2"
### setup go
-run "go1.8.1 download"
+run "go1.9.2 download"
### Copy files
run "mkdir -p /site"
@@ -36,11 +36,11 @@ files.each { |x| put x }
copy "vendor/", "/root/go/src/"
### Build
-run "cd /site && go1.8.1 build -v"
+run "cd /site && go1.9.2 build -v"
### Cleanup
run %q[ rm -rf /root/go /site/backend /root/sdk /site/*.go ]
-run %q[ apk del git go1.8.1 ]
+run %q[ apk del git go1.9.2 ]
cmd "/site/run.sh"