We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eefa7f commit 4544f45Copy full SHA for 4544f45
.goreleaser.yml
@@ -38,6 +38,15 @@ dockers:
38
- "--platform=linux/amd64"
39
goos: linux
40
goarch: amd64
41
+ - image_templates:
42
+ - 'ghcr.io/yannh/kubeconform:latest-alpine'
43
+ - 'ghcr.io/yannh/kubeconform:{{ .Tag }}-alpine'
44
+ - 'ghcr.io/yannh/kubeconform:{{ .Tag }}-amd64-alpine'
45
+ dockerfile: Dockerfile-alpine
46
+ build_flag_templates:
47
+ - "--platform=linux/amd64"
48
+ goos: linux
49
+ goarch: amd64
50
51
checksum:
52
name_template: 'CHECKSUMS'
Dockerfile-alpine
@@ -0,0 +1,5 @@
1
+FROM alpine:3.14 as certs
2
+MAINTAINER Yann HAMON <yann@mandragor.org>
3
+RUN apk add ca-certificates
4
+COPY kubeconform /
5
+ENTRYPOINT ["/kubeconform"]
0 commit comments