From 0b95c11829220beb6b63e09a05d70013f2688000 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Mon, 22 Jun 2026 13:17:42 +0100 Subject: [PATCH] squishes RUN command in msmtp --- msmtp/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msmtp/Dockerfile b/msmtp/Dockerfile index 98f99a1..ebd657b 100644 --- a/msmtp/Dockerfile +++ b/msmtp/Dockerfile @@ -3,8 +3,8 @@ FROM alpine:${ALPINE_VERSION} RUN mkdir -p /var/msmtp WORKDIR /var/msmtp ARG VERSION -RUN apk --no-cache add git autoconf automake build-base gettext gettext-dev gnutls-dev libtool make texinfo -RUN git clone https://github.com/marlam/msmtp.git --branch msmtp-${VERSION} --single-branch --depth 1 msmtp \ +RUN apk --no-cache add git autoconf automake build-base gettext gettext-dev gnutls-dev libtool make texinfo \ + && git clone https://github.com/marlam/msmtp.git --branch msmtp-${VERSION} --single-branch --depth 1 msmtp \ && cd msmtp \ && autoreconf -fi \ && ./configure \