mirror of
https://github.com/go-gitea/gitea
synced 2024-11-19 16:44:25 +00:00
Merge pull request #327 from ciarand/dev
Update the Docker build's Go source and version
This commit is contained in:
commit
3e23241f58
@ -10,6 +10,9 @@ HOST_PORT="YOUR_HOST_PORT" # The port on host, which will be redirected t
|
|||||||
# apt source, you can select 'nchc'(mirror in Taiwan) or 'aliyun'(best for mainlance China users) according to your network, if you could connect to the official unbunt mirror in a fast speed, just leave it to "".
|
# apt source, you can select 'nchc'(mirror in Taiwan) or 'aliyun'(best for mainlance China users) according to your network, if you could connect to the official unbunt mirror in a fast speed, just leave it to "".
|
||||||
APT_SOURCE=""
|
APT_SOURCE=""
|
||||||
|
|
||||||
|
# fail immediately if anything goes wrong
|
||||||
|
set -e
|
||||||
|
|
||||||
DOCKER_BIN=$(which docker.io || which docker)
|
DOCKER_BIN=$(which docker.io || which docker)
|
||||||
if [ -z "$DOCKER_BIN" ] ; then
|
if [ -z "$DOCKER_BIN" ] ; then
|
||||||
echo "Please install docker. You can install docker by running \"wget -qO- https://get.docker.io/ | sh\"."
|
echo "Please install docker. You can install docker by running \"wget -qO- https://get.docker.io/ | sh\"."
|
||||||
|
@ -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 update && apt-get install --yes --force-yes curl git mercurial zip wget ca-certificates build-essential
|
||||||
RUN apt-get install -yq vim sudo
|
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 cd /usr/local/go/src && ./make.bash --no-clean 2>&1
|
||||||
|
|
||||||
RUN go get -u -d github.com/gogits/gogs
|
RUN go get -u -d github.com/gogits/gogs
|
||||||
|
Loading…
Reference in New Issue
Block a user