vendor/github.com/pelletier/go-toml/Dockerfile
changeset 251 1c52a0eeb952
equal deleted inserted replaced
250:c040f992052f 251:1c52a0eeb952
       
     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 
       
     8 FROM scratch
       
     9 COPY --from=builder /go/bin/tomll /usr/bin/tomll
       
    10 COPY --from=builder /go/bin/tomljson /usr/bin/tomljson
       
    11 COPY --from=builder /go/bin/jsontoml /usr/bin/jsontoml