wormhole/Dockerfile.wormchain

32 lines
607 B
Docker

FROM docker.io/golang:1.19.0@sha256:4c00329e17be6fedd8bd4412df454a205348da00f9e0e5d763380a29eb096b75
#used for a readiness probe
RUN apt-get update
RUN apt install -y netcat
RUN apt install -y jq
WORKDIR /app
COPY ./wormchain/go.mod .
COPY ./wormchain/go.sum .
COPY ./sdk /sdk
RUN go mod download
COPY ./wormchain .
EXPOSE 26657
EXPOSE 26656
EXPOSE 6060
EXPOSE 9090
EXPOSE 1317
EXPOSE 4500
RUN unset GOPATH
RUN make client
RUN chmod +x /app/build/wormchaind
RUN make validators
RUN /app/build/wormchaind collect-gentxs --home /app/build
ENTRYPOINT ["/bin/bash","-c","/app/build/wormchaind start"]