Skip to content

Commit 2c2e05c

Browse files
authored
Merge branch 'main' into add-back-postman
2 parents 58ce179 + 386f366 commit 2c2e05c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ docker-rest-agent:
224224
docker build -t hyperledger/cello-agent-docker:latest -f build_image/docker/agent/docker-rest-agent/Dockerfile.in ./ --build-arg pip=$(PIP) --platform linux/$(ARCH)
225225

226226
fabric:
227-
docker build -t hyperledger/fabric:2.5.10 -f build_image/docker/cello-hlf/Dockerfile build_image/docker/cello-hlf/
227+
docker build -t hyperledger/fabric:2.5.13 -f build_image/docker/cello-hlf/Dockerfile build_image/docker/cello-hlf/
228228

229229
dashboard:
230230
docker build -t hyperledger/cello-dashboard:latest -f build_image/docker/common/dashboard/Dockerfile.in ./

build_image/docker/cello-hlf/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# Workdir is set to $GOPATH/src/github.com/hyperledger/fabric
2222
# Data is stored under /var/hyperledger/production
2323

24-
FROM golang:1.23.1
24+
FROM golang:1.24.2
2525
LABEL maintainer="Baohua Yang <yeasy.github.com>"
2626

2727
# Orderer, peer, ca, operation api
@@ -34,10 +34,10 @@ ENV FABRIC_ROOT=$GOPATH/src/github.com/hyperledger/fabric \
3434
FABRIC_CA_ROOT=$GOPATH/src/github.com/hyperledger/fabric-ca
3535

3636
# BASE_VERSION is used in metadata.Version as major version
37-
ENV BASE_VERSION=2.5.10
37+
ENV BASE_VERSION=2.5.13
3838

3939
# PROJECT_VERSION is required in core.yaml for fabric-baseos and fabric-ccenv
40-
ENV PROJECT_VERSION=2.5.10
40+
ENV PROJECT_VERSION=2.5.13
4141
ENV HLF_CA_VERSION=1.5.13
4242

4343
# generic environment (core.yaml) for builder and runtime: e.g., builder: $(DOCKER_NS)/fabric-ccenv:$(TWO_DIGIT_VERSION), golang, java, node

build_image/docker/common/api-engine/Dockerfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update \
1111
WORKDIR /var/www/server
1212

1313
# Install compiled code tools from Artifactory and copy it to opt folder.
14-
RUN curl -L --retry 5 --retry-delay 3 "https://github.com/hyperledger/fabric/releases/download/v2.5.10/hyperledger-fabric-linux-amd64-2.5.10.tar.gz" | tar xz -C /opt/
14+
RUN curl -L --retry 5 --retry-delay 3 "https://github.com/hyperledger/fabric/releases/download/v2.5.13/hyperledger-fabric-linux-amd64-2.5.13.tar.gz" | tar xz -C /opt/
1515

1616
# Copy source code to the working dir
1717
COPY src/api-engine ./

src/api-engine/api/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313

1414
FABRIC_CHAINCODE_STORE = "/opt/cello/chaincode"
1515

16-
FABRIC_VERSION = "2.5.10"
16+
FABRIC_VERSION = "2.5.13"

src/api-engine/api/lib/agent/docker/handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def create(self, info):
4444
"tls": info.get("tls")[2:-1],
4545
"peer_config_file": info.get("config_file")[2:-1],
4646
"orderer_config_file": info.get("config_file")[2:-1],
47-
"img": "hyperledger/fabric:2.5.10",
47+
"img": "hyperledger/fabric:2.5.13",
4848
"cmd": (
4949
'bash /tmp/init.sh "peer node start"'
5050
if info.get("type") == "peer"

0 commit comments

Comments
 (0)