Skip to content

Commit

Permalink
Upgrade golang 1.6 to 1.7 in chaincode examples
Browse files Browse the repository at this point in the history
Fix #FAB-1368.

Change-Id: Iffb824f8caa3234fba8de45066160e715ac568bc
Signed-off-by: Baohua Yang <baohyang@cn.ibm.com>
  • Loading branch information
yeasy committed Dec 30, 2016
1 parent dcaa22b commit a9ae6e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/chaincode/go/asset_management02/asset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ peer:
networkId: dev

Dockerfile: |
from golang:1.6
from golang:1.7
# Install RocksDB
RUN cd /opt && git clone --branch v4.1 --single-branch --depth 1 https://github.com/facebook/rocksdb.git && cd rocksdb
WORKDIR /opt/rocksdb
Expand Down Expand Up @@ -392,7 +392,7 @@ chaincode:
# This is the basis for the Golang Dockerfile. Additional commands will
# be appended depedendent upon the chaincode specification.
Dockerfile: |
from golang:1.6
from golang:1.7
COPY src $GOPATH/src
WORKDIR $GOPATH
Expand Down
4 changes: 2 additions & 2 deletions examples/chaincode/go/asset_management_with_roles/asset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ peer:
networkId: dev

Dockerfile: |
from golang:1.6
from golang:1.7
# Install RocksDB
RUN cd /opt && git clone --branch v4.1 --single-branch --depth 1 https://github.com/facebook/rocksdb.git && cd rocksdb
WORKDIR /opt/rocksdb
Expand Down Expand Up @@ -367,7 +367,7 @@ chaincode:
# This is the basis for the Golang Dockerfile. Additional commands will
# be appended depedendent upon the chaincode specification.
Dockerfile: |
from golang:1.6
from golang:1.7
COPY src $GOPATH/src
WORKDIR $GOPATH
Expand Down

0 comments on commit a9ae6e7

Please sign in to comment.