mirror of
https://github.com/outbackdingo/kubelet.git
synced 2026-01-27 18:19:26 +00:00
16 lines
301 B
Makefile
16 lines
301 B
Makefile
VERSION=$(shell git describe --tags --match=v* --always --dirty)
|
|
|
|
LOCAL_REPO?=poseidon/kubelet
|
|
IMAGE_REPO?=quay.io/poseidon/kubelet
|
|
|
|
image: \
|
|
image-amd64 \
|
|
image-arm64
|
|
|
|
image-%:
|
|
buildah bud -f Dockerfile.$* \
|
|
-t $(LOCAL_REPO):$(VERSION)-$* \
|
|
--arch $* --override-arch $* \
|
|
--format=docker .
|
|
|