author | Guiorgy
<Guiorgy123@gmail.com> 2025-08-02 20:40:39 UTC |
committer | Alberto Bertogli
<albertito@blitiri.com.ar> 2025-08-03 10:09:46 UTC |
parent | c6e3fb42b0881e974a8dfff278e31ba2eab67316 |
docker/Dockerfile | +4 | -5 |
diff --git a/docker/Dockerfile b/docker/Dockerfile index 6088808..f0d1eea 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -17,13 +17,12 @@ RUN go get -d ./... && \ # Create the image. FROM debian:stable -# Make debconf/frontend non-interactive, to avoid distracting output about the -# lack of $TERM. -ENV DEBIAN_FRONTEND=noninteractive - # Install the packages we need. # This includes chasquid, which sets up good defaults. -RUN apt-get update -q && \ +# Make debconf/frontend non-interactive, to avoid distracting output about the +# lack of $TERM. +RUN DEBIAN_FRONTEND=noninteractive \ + apt-get update -q && \ apt-get install -y -q \ chasquid \ dovecot-lmtpd dovecot-imapd dovecot-pop3d \