docker/dovecot/Makefile
2023-06-10 08:04:31 +03:00

14 lines
215 B
Makefile

VERSION=2.3.16-1
IMAGE=dovecot
REGISTRY=gitea.geekhome.org/ghp
.PHONY: build push all
build:
docker build -t $(REGISTRY)/$(IMAGE):$(VERSION) .
push:
docker push $(REGISTRY)/$(IMAGE):$(VERSION)
all: build push