aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2018-02-08 22:51:17 -0800
committerChristine Dodrill <me@christine.website>2018-02-08 22:51:17 -0800
commitf654e00827f63df6ba3ded6127efae4136b1c19f (patch)
tree365cdf5bcede333384a52aedb5fe98ed2db05e03
parent8146f1138ea9dbd6d61b3320f943b31a3665e119 (diff)
downloadxesite-f654e00827f63df6ba3ded6127efae4136b1c19f.tar.xz
xesite-f654e00827f63df6ba3ded6127efae4136b1c19f.zip
box: go 1.9.4
-rw-r--r--box.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/box.rb b/box.rb
index 5e9bcde..75646a4 100644
--- a/box.rb
+++ b/box.rb
@@ -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"