From 2b62cebfb7c678577452fd04b5a366cd9a2014cd Mon Sep 17 00:00:00 2001 From: Jestin Woods Date: Tue, 11 Jun 2019 10:19:06 -0700 Subject: [PATCH] Publish docker image --- .goreleaser.yaml | 5 +++++ Dockerfile | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 Dockerfile diff --git a/.goreleaser.yaml b/.goreleaser.yaml index e0bfe5e..4a79930 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -90,3 +90,8 @@ snapcraft: # things they allow: # https://snapcraft.io/docs/reference/interfaces. plugs: ["home", "network"] + +dockers: + - image_templates: + - humio/cli:latest + - humio/cli:{{ .Tag }} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1a9654d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM scratch + +COPY humioctl /humioctl + +ENTRYPOINT ["/humioctl"]