adding Makefile as building entry point

This commit is contained in:
plm 2025-01-13 12:02:53 +01:00
parent 7d7835919e
commit 4c51de03bc
2 changed files with 24 additions and 0 deletions

24
Makefile Normal file
View File

@ -0,0 +1,24 @@
.DEFAULT_GOAL := all
build: clean
go build .
run:
./oc-monitord
clean:
rm -rf oc-monitord
docker:
DOCKER_BUILDKIT=1 docker build -t oc/oc-monitord:0.0.1 -f Dockerfile .
docker tag oc/oc-monitord:0.0.1 oc/oc-monitord:latest
publish-kind:
kind load docker-image oc/oc-monitord:0.0.1 --name opencloud
publish-registry:
@echo "TODO"
all: docker publish-kind publish-registry
.PHONY: build run clean docker publish-kind publish-registry

Binary file not shown.