mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 14:09:21 +00:00
Add support for Arm64 Docker images (#201)
This commit is contained in:
parent
ce2f6de185
commit
65cfe7e16e
2 changed files with 19 additions and 1 deletions
|
|
@ -49,6 +49,24 @@ dockers:
|
|||
- "--platform=linux/amd64"
|
||||
goos: linux
|
||||
goarch: amd64
|
||||
- image_templates:
|
||||
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest-arm64'
|
||||
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-arm64'
|
||||
dockerfile: Dockerfile
|
||||
build_flag_templates:
|
||||
- "--platform=darwin/arm64"
|
||||
goos: darwin
|
||||
goarch: arm64
|
||||
use: buildx
|
||||
- image_templates:
|
||||
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest-arm64-alpine'
|
||||
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-arm64-alpine'
|
||||
dockerfile: Dockerfile-alpine
|
||||
build_flag_templates:
|
||||
- "--platform=darwin/arm64"
|
||||
goos: darwin
|
||||
goarch: arm64
|
||||
use: buildx
|
||||
|
||||
checksum:
|
||||
name_template: 'CHECKSUMS'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM alpine:3.14 as certs
|
||||
FROM alpine:3.14
|
||||
LABEL org.opencontainers.image.authors="yann@mandragor.org" \
|
||||
org.opencontainers.image.source="https://github.com/yannh/kubeconform/" \
|
||||
org.opencontainers.image.description="A Kubernetes manifests validation tool" \
|
||||
|
|
|
|||
Loading…
Reference in a new issue