This repository has been archived by the owner on Aug 31, 2022. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove `GOARCH` env in Dockerfile to support multi arch images. Building multi arch images is easy with `docker buildx`: * enable `docker buildx` feature following the [docs](https://docs.docker.com/buildx/working-with-buildx/) * run `docker buildx create --name builder --use` to create a builder instance(only need run once) * run following command to build and push muti arch images: `docker buildx build --platform linux/amd64,linux/arm64 -t opsgenie/kubernetes-event-exporter:v0.9 --push .`
- Loading branch information