From f971f1efd29a541d8ebb7853c2669f2da2c38a47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bojan=20=C4=8Cekrli=C4=87?= Date: Mon, 13 May 2019 13:28:55 +0200 Subject: [PATCH] Fix for #12 where Alpine 3.9 split cyrus-sasl into multiple packages: https://bugs.alpinelinux.org/issues/9987 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0b61093..c641b9a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,8 @@ ENV INBOUND_DEBUGGING= # Install postfix first to get the first account (101) # Install opendkim second to get the second account (102) RUN true && \ - apk add --no-cache postfix cyrus-sasl cyrus-sasl-plain && \ + apk add --no-cache --upgrade cyrus-sasl cyrus-sasl-plain cyrus-sasl-login && \ + apk add --no-cache postfix && \ apk add --no-cache opendkim && \ apk add --no-cache ca-certificates tzdata supervisor rsyslog && \ apk add --no-cache --upgrade musl musl-utils && \