diff options
author | Ciaran Downey <me@ciarand.me> | 2014-07-25 12:47:41 -0700 |
---|---|---|
committer | Ciaran Downey <me@ciarand.me> | 2014-07-25 12:59:10 -0700 |
commit | aea2b54c99f8456c9a5b2aa4585693ec44f0c4f7 (patch) | |
tree | 2e5af0f9e7427c7bb92e53379266a32485ac3cfa | |
parent | cf3021eccac305b9291f27668d997a1ecb40b025 (diff) | |
download | gitea-aea2b54c99f8456c9a5b2aa4585693ec44f0c4f7.tar.gz gitea-aea2b54c99f8456c9a5b2aa4585693ec44f0c4f7.zip |
Use the official Go source, follow redirects
-rw-r--r-- | dockerfiles/images/gogits/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dockerfiles/images/gogits/Dockerfile b/dockerfiles/images/gogits/Dockerfile index 1f67d41ed9..a171e15e3b 100644 --- a/dockerfiles/images/gogits/Dockerfile +++ b/dockerfiles/images/gogits/Dockerfile @@ -13,7 +13,7 @@ ENV GOPATH /go RUN apt-get update && apt-get install --yes --force-yes curl git mercurial zip wget ca-certificates build-essential RUN apt-get install -yq vim sudo -RUN curl -s http://docker.u.qiniudn.com/go1.2.1.src.tar.gz | tar -v -C /usr/local -xz +RUN curl -sL https://golang.org/dl/go1.3.linux-amd64.tar.gz | tar -v -C /usr/local -xz RUN cd /usr/local/go/src && ./make.bash --no-clean 2>&1 RUN go get -u -d github.com/gogits/gogs |