Can't get go 1.5

2 posts / 0 new
Last post
#1 Sun, 2015-08-30 03:44
JAre
  • JAre's picture
  • Offline
  • Last seen: 2 years 4 weeks ago
  • Joined: 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?

Fri, 2015-09-25 01:47
treeder
  • treeder's picture
  • Offline
  • Last seen: 4 months 2 weeks ago
  • Joined: 2015-09-09

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

Log in or register to post comments