This commit is contained in:
kento2 2026-08-16 00:26:34 +02:00
commit dede9ce18d
21 changed files with 485 additions and 0 deletions

7
images/container.mk Normal file
View file

@ -0,0 +1,7 @@
build:
podman build -f Containerfile -t $(TAG):$(VERSION) .
publish: build
podman push localhost/$(TAG):$(VERSION) git.lab0x13.site/scrow/$(TAG):$(VERSION)
.PHONY: build publish