We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db7c26d commit 08e0e64Copy full SHA for 08e0e64
core/network/fabric-interop-cc/Dockerfile
@@ -3,7 +3,9 @@ FROM golang:1.20 AS build
3
COPY . /fabric-interop-cc
4
WORKDIR /fabric-interop-cc
5
6
-RUN cd /fabric-interop-cc/contracts/interop && go build -o interop
+RUN apt-get update && apt-get install musl-tools -y
7
+
8
+RUN cd /fabric-interop-cc/contracts/interop && CC=musl-gcc go build -o interop
9
10
# Production ready image
11
# Pass the binary to the prod image
core/network/fabric-interop-cc/contracts/interop/VERSION
@@ -1 +1 @@
1
-1.5.14
+1.5.15
0 commit comments