From 5321ebe707a2b77e52b95625bbd1cc3068b0b98e Mon Sep 17 00:00:00 2001 From: andryyy Date: Mon, 12 Jun 2017 10:42:48 +0200 Subject: [PATCH] Push to Dovecot 2.2.30 --- data/Dockerfiles/dovecot/Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/data/Dockerfiles/dovecot/Dockerfile b/data/Dockerfiles/dovecot/Dockerfile index c56ea43c..e394df43 100644 --- a/data/Dockerfiles/dovecot/Dockerfile +++ b/data/Dockerfiles/dovecot/Dockerfile @@ -1,10 +1,9 @@ FROM debian:stretch-slim -#ubuntu:xenial LABEL maintainer "Andre Peters " ARG DEBIAN_FRONTEND=noninteractive ENV LC_ALL C -ENV DOVECOT_VERSION 2.2.29.1 +ENV DOVECOT_VERSION 2.2.30 ENV PIGEONHOLE_VERSION 0.4.18 RUN apt-get update && apt-get -y install \ @@ -57,9 +56,8 @@ RUN curl https://www.dovecot.org/releases/2.2/dovecot-$DOVECOT_VERSION.tar.gz | && make -j3 \ && make install \ && make clean \ - && cd .. && rm -rf dovecot-$DOVECOT_VERSION - -RUN curl https://pigeonhole.dovecot.org/releases/2.2/dovecot-2.2-pigeonhole-$PIGEONHOLE_VERSION.tar.gz | tar xvz \ + && cd .. && rm -rf dovecot-$DOVECOT_VERSION \ + && curl https://pigeonhole.dovecot.org/releases/2.2/dovecot-2.2-pigeonhole-$PIGEONHOLE_VERSION.tar.gz | tar xvz \ && cd dovecot-2.2-pigeonhole-$PIGEONHOLE_VERSION \ && ./configure \ && make -j3 \