decred.org/dcrwallet/v3@v3.1.0/rpc/Dockerfile (about)

     1  FROM golang:1.14-buster
     2  
     3  RUN apt-get update && apt-get install -y protobuf-compiler
     4  
     5  WORKDIR /build/rpc
     6  CMD ["/bin/bash", "regen.sh"]
     7  
     8