kanidm: add custom image with kubectl for kubernetes install with helm chart

This commit is contained in:
ace
2025-05-13 00:13:06 +03:00
parent 41ca98f36f
commit f7b3aa3099
3 changed files with 85 additions and 0 deletions

16
kanidm/Makefile Normal file
View File

@ -0,0 +1,16 @@
VERSION=1.6.2
BUILD=1
IMAGE=kanidm
REGISTRY=gitea.geekhome.org/ghp
.PHONY: build push all
build:
docker build $(NO_CACHE) \
--build-arg KANIDM_VERSION=v$(VERSION) \
-t $(REGISTRY)/$(IMAGE):$(VERSION)-$(BUILD) .
push:
docker push $(REGISTRY)/$(IMAGE):$(VERSION)-$(BUILD)
all: build push