7 lines
182 B
Makefile
7 lines
182 B
Makefile
build:
|
|
podman build -f Containerfile -t $(TAG):$(VERSION) .
|
|
|
|
publish: build
|
|
podman push localhost/$(TAG):$(VERSION) git.lab0x13.site/scrow/$(TAG):$(VERSION)
|
|
|
|
.PHONY: build publish
|