summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/pelletier/go-toml/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pelletier/go-toml/Dockerfile')
-rw-r--r--vendor/github.com/pelletier/go-toml/Dockerfile11
1 files changed, 0 insertions, 11 deletions
diff --git a/vendor/github.com/pelletier/go-toml/Dockerfile b/vendor/github.com/pelletier/go-toml/Dockerfile
deleted file mode 100644
index fffdb0166..000000000
--- a/vendor/github.com/pelletier/go-toml/Dockerfile
+++ /dev/null
@@ -1,11 +0,0 @@
-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