Siddharth Maurya

Results 2 comments of Siddharth Maurya

@zhanglifengf12 Could you tell what specific changes you made to that Dockerfile? I think my issue #3 might be similar to yours.

Modified ./chainspace-go/dummycontract/Dockerfile ``` FROM golang:alpine AS build COPY . /go/src/chainspace.io/dummychecker WORKDIR /go/src/chainspace.io/dummychecker ADD . . RUN go mod init RUN CGO_ENABLED=0 GOOS=linux go build -a -tags netgo -ldflags '-w' FROM...