We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49ce04b commit 946e126Copy full SHA for 946e126
.goreleaser.yml
@@ -34,3 +34,10 @@ brews:
34
bin.install "helm-docs"
35
test: |
36
system "#{bin}/helm-docs --version"
37
+dockers:
38
+ - goos: linux
39
+ goarch: amd64
40
+ dockerfile: Dockerfile
41
+ image_templates:
42
+ - "norwoodj/{{.ProjectName}}:latest"
43
+ - "norwoodj/{{.ProjectName}}:{{.Tag}}"
Dockerfile
@@ -0,0 +1,5 @@
1
+FROM alpine
2
+
3
+COPY helm-docs /usr/bin/
4
5
+ENTRYPOINT ["helm-docs"]
0 commit comments