From ceb3f91cb47534e25066bb5336b512dd9b5f5ef0 Mon Sep 17 00:00:00 2001 From: ace Date: Mon, 30 Oct 2023 10:41:32 +0300 Subject: [PATCH] rspamd: bump to v3.7.3 --- rspamd/Dockerfile | 2 +- rspamd/Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rspamd/Dockerfile b/rspamd/Dockerfile index b65c585..eed04d1 100644 --- a/rspamd/Dockerfile +++ b/rspamd/Dockerfile @@ -17,7 +17,7 @@ RUN dnf install -y postfix-3.5.9 postfix-ldap-3.5.9 postfix-mysql-3.5.9 postfix- RUN update-crypto-policies --set DEFAULT:SHA1 \ && curl https://rspamd.com/rpm-stable/centos-9/rspamd.repo > /etc/yum.repos.d/rspamd.repo \ && rpm --import https://rspamd.com/rpm/gpg.key \ - && dnf install -y rspamd-3.7.1 \ + && dnf install -y rspamd-3.7.3 \ && dnf clean all \ && rm -rf /var/cache/yum \ && update-crypto-policies --set DEFAULT diff --git a/rspamd/Makefile b/rspamd/Makefile index d83ce6a..15e4826 100644 --- a/rspamd/Makefile +++ b/rspamd/Makefile @@ -1,11 +1,11 @@ -VERSION=3.7.1-1 +VERSION=3.7.3-1 IMAGE=rspamd REGISTRY=gitea.geekhome.org/ghp .PHONY: build push all build: - docker build -t $(REGISTRY)/$(IMAGE):$(VERSION) . + docker build --no-cache -t $(REGISTRY)/$(IMAGE):$(VERSION) . push: docker push $(REGISTRY)/$(IMAGE):$(VERSION)