Dockerfile.build 174 B

123456789101112
  1. FROM golang:1.12.7
  2. ENV USER root
  3. WORKDIR /go/src/github.com/cloudflare/cfssl
  4. COPY . .
  5. # restore all deps and build
  6. RUN go get github.com/mitchellh/gox
  7. ENTRYPOINT ["gox"]