2019-09-04 19:53:54 +00:00
|
|
|
FROM golang:1.12-alpine3.9 as builder
|
|
|
|
WORKDIR /go/src/github.com/pelletier/go-toml
|
|
|
|
COPY . .
|
|
|
|
ENV CGO_ENABLED=0
|
|
|
|
ENV GOOS=linux
|
|
|
|
RUN go install ./...
|
|
|
|
|
|
|
|
FROM scratch
|
|
|
|
COPY --from=builder /go/bin/tomll /usr/bin/tomll
|
|
|
|
COPY --from=builder /go/bin/tomljson /usr/bin/tomljson
|
2020-09-01 14:01:23 +00:00
|
|
|
COPY --from=builder /go/bin/jsontoml /usr/bin/jsontoml
|