From f32d40eea605f8b043f3315a2d45c3b4cd87be45 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Tue, 25 Mar 2025 12:09:15 +0000 Subject: [PATCH] fix: update Haraka version in Dockerfile and install specific version --- Haraka/Dockerfile.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Haraka/Dockerfile.tpl b/Haraka/Dockerfile.tpl index 6dd2ed1f49..96f24846f8 100644 --- a/Haraka/Dockerfile.tpl +++ b/Haraka/Dockerfile.tpl @@ -6,7 +6,7 @@ RUN npm config set fetch-retries 5 RUN npm config set fetch-retry-mintimeout 100000 RUN npm config set fetch-retry-maxtimeout 600000 - +ENV HARAKA_VERSION=3.0.5 ARG GIT_SHA ARG APP_VERSION @@ -33,7 +33,7 @@ RUN apk upgrade --update && \ addgroup -g 88 -S smtp && \ adduser -u 88 -D -S -G smtp -h /harakaapp smtp && \ # Install haraka and toobusy package - npm install -g --unsafe-perm Haraka toobusy-js && \ + npm install -g --unsafe-perm Haraka@$HARAKA_VERSION toobusy-js && \ # # Cleaning up apk del --purge -r .fetch-deps && \ apk add --no-cache tzdata openssl execline ca-certificates && \