mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-30 22:21:34 +00:00
Moves vendoring over to Go modules. Fixes issues found by Go Vet in Go 1.16 Signed-off-by: Dave Tucker <dave@dtucker.co.uk>
12 lines
319 B
Docker
Vendored
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
|