This commit is contained in:
mr
2026-05-28 08:34:52 +02:00
parent e3a3e7ed4a
commit f17148ac17
4 changed files with 142 additions and 18 deletions
+5 -3
View File
@@ -21,15 +21,17 @@ clean:
rm -rf oc-shared.tar.gz
docker:
DOCKER_BUILDKIT=1 docker build -t oc/oc-shared:0.0.1 -f Dockerfile .
docker tag oc/oc-shared:0.0.1 oc/oc-shared:latest
DOCKER_BUILDKIT=1 docker build -t oc-shared -f Dockerfile . --build-arg=HOST=$(HOST)
docker tag oc-shared opencloudregistry/oc-shared:latest
publish-kind:
kind load docker-image oc/oc-shared:0.0.1 --name opencloud
publish-registry:
@echo "TODO"
docker push opencloudregistry/oc-shared:latest
all: docker publish-kind publish-registry
ci: docker publish-registry
.PHONY: build run clean docker publish-kind publish-registry