rspamd: bump to v3.13.2

This commit is contained in:
ace
2025-10-19 21:09:40 +03:00
parent 9c1b07e0a9
commit 0d22e2537d

View File

@@ -1,4 +1,4 @@
VERSION=3.11.1 VERSION=3.13.2
BUILD=1 BUILD=1
IMAGE=rspamd IMAGE=rspamd
REGISTRY=gitea.geekhome.org/ghp REGISTRY=gitea.geekhome.org/ghp
@@ -9,13 +9,21 @@ RSPAMD_VERSION=$(VERSION)
.PHONY: build push all .PHONY: build push all
ifeq ($(shell command -v podman 2> /dev/null),)
CMD=docker
FORMAT=
else
CMD=podman
FORMAT=--format=docker
endif
build: build:
docker build --build-arg DOVECOT_VERSION=$(DOVECOT_VERSION) \ $(CMD) build --build-arg DOVECOT_VERSION=$(DOVECOT_VERSION) \
--build-arg POSTFIX_VERSION=$(POSTFIX_VERSION) \ --build-arg POSTFIX_VERSION=$(POSTFIX_VERSION) \
--build-arg RSPAMD_VERSION=$(RSPAMD_VERSION) \ --build-arg RSPAMD_VERSION=$(RSPAMD_VERSION) \
-t $(REGISTRY)/$(IMAGE):$(VERSION)-$(BUILD) . -t $(REGISTRY)/$(IMAGE):$(VERSION)-$(BUILD) .
push: push:
docker push $(REGISTRY)/$(IMAGE):$(VERSION)-$(BUILD) $(CMD) push $(REGISTRY)/$(IMAGE):$(VERSION)-$(BUILD)
all: build push all: build push