mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
[FAB-14369]Fix dev mode failing to build Chaincode
Building Chaincode fails with the ccenv container created from Alpine because go build process can't import the shim package. GOPATH in ccenv changed from "/opt/gopath" to "/go" due to the move to Alpine. However, docker-compose-simple.yaml still has `GOPATH=/opt/gopath`. This CR removes the environment variable. FAB-14369 #done Change-Id: I18d9861d9b6f45c1548169fbb143e7883f8ba207 Signed-off-by: Yuki Kondo <yuki.kondo@hal.hitachi.com>
This commit is contained in:
parent
ed0f1cc9ea
commit
7e3d428269
1 changed files with 0 additions and 1 deletions
|
|
@ -70,7 +70,6 @@ services:
|
|||
image: hyperledger/fabric-ccenv
|
||||
tty: true
|
||||
environment:
|
||||
- GOPATH=/opt/gopath
|
||||
- CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock
|
||||
- FABRIC_LOGGING_SPEC=DEBUG
|
||||
- CORE_PEER_ID=abstore
|
||||
|
|
|
|||
Loading…
Reference in a new issue