1
0
mirror of https://github.com/k8sgpt-ai/k8sgpt.git synced 2025-05-13 02:24:27 +00:00
k8sgpt/Makefile
Alex Jones f0a0c9aebf chore: updated
Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
2023-04-15 18:05:57 +01:00

4 lines
319 B
Makefile

.PHONY: docker-build
IMG ?= ghcr.io/k8sgpt-ai/k8sgpt:latest
docker-build:
docker buildx build --build-arg=VERSION="$$(git describe --tags --abbrev=0)" --build-arg=COMMIT="$$(git rev-parse --short HEAD)" --build-arg DATE="$$(date +%FT%TZ)" --platform="linux/amd64,linux/arm64" -t ${IMG} -f container/Dockerfile . --push