Can't get go 1.5
#1
Sun, 2015-08-30 03:44
JAre
-
- Offline
- 2 years 4 weeks ago
- 2015-07-16
The current version of the go package is (1.5-r0) but for some reason apk downloads (1.4.2-r0) both from main and testing repos and after fusing the cache.
How do I get the new one?
Can try this:
FROM iron/base
RUN apk update; apk upgrade; \
sed -i -e 's/v3\.2/edge/g' /etc/apk/repositories; apk update; \
apk add curl make git go; \
mkdir /gopath; \
rm -rf /var/cache/apk/*
ENV GOPATH /go