upgrade golang baseimage from 1.6.2 to 1.7.3

This commit is contained in:
yhua 2016-12-15 13:06:30 +08:00
parent 2585b5d4e7
commit 10306e784b
7 changed files with 8 additions and 8 deletions

View File

@ -3,7 +3,7 @@ sudo: true
language: go
go:
- 1.6.2
- 1.7.3
go_import_path: github.com/vmware/harbor

View File

@ -63,13 +63,13 @@ You can compile the code by one of the three approaches:
* Build Golang dev image:
```sh
$ make compile_buildgolangimage -e GOBUILDIMAGE=harborgo:1.6.2
$ make compile_buildgolangimage -e GOBUILDIMAGE=harborgo:1.7.3
```
* Build, install and bring up Harbor:
```sh
$ make install -e GOBUILDIMAGE=harborgo:1.6.2 COMPILETAG=compile_golangimage
$ make install -e GOBUILDIMAGE=harborgo:1.7.3 COMPILETAG=compile_golangimage
```
#### II. Compile code with your own Golang environment, then build Harbor

View File

@ -1,4 +1,4 @@
FROM golang:1.6.2
FROM golang:1.7.3
MAINTAINER jiangd@vmware.com

View File

@ -1,4 +1,4 @@
FROM golang:1.6.2
FROM golang:1.7.3
MAINTAINER jiangd@vmware.com

View File

@ -1,4 +1,4 @@
FROM golang:1.6.2
FROM golang:1.7.3
MAINTAINER jiangd@vmware.com

View File

@ -1,4 +1,4 @@
FROM golang:1.6.2
FROM golang:1.7.3
MAINTAINER jiangd@vmware.com

View File

@ -1,4 +1,4 @@
FROM golang:1.6.2
FROM golang:1.7.3
RUN apt-get update \
&& apt-get install -y libldap2-dev \