Skip to content

Commit befc615

Browse files
committed
Update the image
Signed-off-by: David VIEJO <[email protected]>
1 parent 661d356 commit befc615

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

Dockerfile

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3
2-
1+
FROM alpine:3.14
32

43
RUN \
5-
microdnf update --nodocs && \
6-
microdnf install curl ca-certificates shadow-utils --nodocs
4+
apk update && \
5+
apk add --no-cache curl ca-certificates shadow
76

87
COPY CREDITS /licenses/CREDITS
98
COPY LICENSE /licenses/LICENSE

README.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -222,27 +222,27 @@ EOF
222222

223223
```bash
224224
export PEER_IMAGE=hyperledger/fabric-peer
225-
export PEER_VERSION=2.5.9
225+
export PEER_VERSION=2.5.10
226226

227227
export ORDERER_IMAGE=hyperledger/fabric-orderer
228-
export ORDERER_VERSION=2.5.9
228+
export ORDERER_VERSION=2.5.10
229229

230230
export CA_IMAGE=hyperledger/fabric-ca
231-
export CA_VERSION=1.5.12
231+
export CA_VERSION=1.5.13
232232
```
233233

234234

235235
### Environment Variables for ARM (Mac M1)
236236

237237
```bash
238238
export PEER_IMAGE=hyperledger/fabric-peer
239-
export PEER_VERSION=2.5.9
239+
export PEER_VERSION=2.5.10
240240

241241
export ORDERER_IMAGE=hyperledger/fabric-orderer
242-
export ORDERER_VERSION=2.5.9
242+
export ORDERER_VERSION=2.5.10
243243

244244
export CA_IMAGE=hyperledger/fabric-ca
245-
export CA_VERSION=1.5.12
245+
export CA_VERSION=1.5.13
246246

247247
```
248248

@@ -541,7 +541,6 @@ kubectl hlf identity create --name org2-admin --namespace default \
541541
```bash
542542
kubectl create secret generic wallet --namespace=default \
543543
--from-file=org1msp.yaml=$PWD/org1msp.yaml \
544-
--from-file=org2msp.yaml=$PWD/org2msp.yaml \
545544
--from-file=orderermsp.yaml=$PWD/orderermsp.yaml \
546545
--from-file=orderermspsign.yaml=$PWD/orderermspsign.yaml
547546

@@ -567,9 +566,9 @@ kubectl apply -f - <<EOF
567566
apiVersion: hlf.kungfusoftware.es/v1alpha1
568567
kind: FabricMainChannel
569568
metadata:
570-
name: demo5
569+
name: demo
571570
spec:
572-
name: demo5
571+
name: demo
573572
adminOrdererOrganizations:
574573
- mspID: OrdererMSP
575574
adminPeerOrganizations:

0 commit comments

Comments
 (0)