update go and nim

This commit is contained in:
Cadey Ratio 2017-09-16 14:09:33 -07:00
parent 2d58c23e31
commit 3f5bc24740
2 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
from "xena/alpine"
run %q[ apk add --no-cache wget && cd /usr/local \
&& wget -O go.tgz https://storage.googleapis.com/golang/go1.8.1.linux-amd64.tar.gz \
&& wget -O go.tgz https://storage.googleapis.com/golang/go1.8.3.linux-amd64.tar.gz \
&& tar xf go.tgz && rm go.tgz ]
env "PATH" => "$PATH:/usr/local/go/bin"
flatten
tag "xena/go:1.8"
tag "xena/go:1.8.1"
tag "xena/go:1.8.3"

View File

@ -5,7 +5,7 @@ from "xena/alpine"
# update envvars
env "PATH" => "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/nim/bin:/root/.nimble/bin",
"NIM_VERSION" => "0.16.0"
"NIM_VERSION" => "0.17.2"
# system deps
run %q[ apk add --no-cache --virtual nim-compiler-deps wget libc-dev gcc libgcc git perl xz tar \
@ -22,4 +22,4 @@ run %q[ mkdir -p /opt && cd /opt \
# shipit
flatten
tag "xena/nim:0.16.0"
tag "xena/nim:0.17.2"