mirror of https://github.com/docker/docs.git
bump to 1.6.1
Signed-off-by: Victor Vieux <vieux@docker.com>
This commit is contained in:
parent
a6c1f1463c
commit
d365b25558
|
@ -1,7 +1,7 @@
|
|||
language: go
|
||||
|
||||
go:
|
||||
- 1.5.4
|
||||
- 1.6.1
|
||||
|
||||
# let us have speedy Docker-based Travis workers
|
||||
sudo: false
|
||||
|
|
|
@ -25,7 +25,7 @@ sudo apt-get install git
|
|||
|
||||
You also need Go 1.5 or higher. Download Go from [https://golang.org/dl/](https://golang.org/dl/). To install on Linux:
|
||||
```sh
|
||||
tar xzvf go1.5.4.linux-amd64.tar.gz
|
||||
tar xzvf go1.6.1.linux-amd64.tar.gz
|
||||
sudo mv go /usr/local
|
||||
```
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
FROM golang:1.5.4-alpine
|
||||
FROM golang:1.6.1-alpine
|
||||
|
||||
ARG GOOS
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends git file parall
|
|||
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Install golang
|
||||
ENV GO_VERSION 1.5.4
|
||||
ENV GO_VERSION 1.6.1
|
||||
RUN curl -sSL https://storage.googleapis.com/golang/go${GO_VERSION}.linux-amd64.tar.gz | tar -v -C /usr/local -xz
|
||||
ENV PATH /go/bin:/usr/local/go/bin:$PATH
|
||||
ENV GOPATH /go
|
||||
|
|
Loading…
Reference in New Issue