From c1a2c159de689464e74d3c2192c3b46996b5f70e Mon Sep 17 00:00:00 2001 From: Yann Hamon Date: Sun, 14 May 2023 12:52:13 +0200 Subject: [PATCH] Revert "Add support for Arm64 Docker images (#201)" This reverts commit 65cfe7e16e9f220f2ffe882803d2bf165df1456c. --- .goreleaser.yml | 18 ------------------ Dockerfile-alpine | 2 +- 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 24bc074..820d718 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -49,24 +49,6 @@ 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' diff --git a/Dockerfile-alpine b/Dockerfile-alpine index 96ac91c..d82bbf3 100644 --- a/Dockerfile-alpine +++ b/Dockerfile-alpine @@ -1,4 +1,4 @@ -FROM alpine:3.14 +FROM alpine:3.14 as certs 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" \