1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-07 20:05:47 +00:00
gitea/vendor/github.com/pelletier/go-toml/Dockerfile
2020-09-01 10:01:23 -04:00

12 lines
319 B
Docker
Vendored

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
COPY --from=builder /go/bin/jsontoml /usr/bin/jsontoml