docker/rspamd/Makefile

14 lines
224 B
Makefile
Raw Normal View History

2023-10-30 07:41:32 +00:00
VERSION=3.7.3-1
2021-01-09 18:06:20 +00:00
IMAGE=rspamd
2023-06-10 05:04:31 +00:00
REGISTRY=gitea.geekhome.org/ghp
2021-01-09 18:06:20 +00:00
.PHONY: build push all
build:
2023-10-30 07:41:32 +00:00
docker build --no-cache -t $(REGISTRY)/$(IMAGE):$(VERSION) .
2021-01-09 18:06:20 +00:00
push:
docker push $(REGISTRY)/$(IMAGE):$(VERSION)
all: build push