Dockerfile 319 B

1234567891011
  1. FROM golang:1.12-alpine3.9 as builder
  2. WORKDIR /go/src/github.com/pelletier/go-toml
  3. COPY . .
  4. ENV CGO_ENABLED=0
  5. ENV GOOS=linux
  6. RUN go install ./...
  7. FROM scratch
  8. COPY --from=builder /go/bin/tomll /usr/bin/tomll
  9. COPY --from=builder /go/bin/tomljson /usr/bin/tomljson
  10. COPY --from=builder /go/bin/jsontoml /usr/bin/jsontoml