Dockerfile.build 173 B

123456789101112
  1. FROM golang:1.9.2
  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"]