[Dovecot] Specify Dovecot version in case of errors with new versions

master
andryyy 2020-06-07 22:43:35 +02:00
parent 5fe9de0500
commit 83e783a9d7
No known key found for this signature in database
GPG Key ID: 8EC34FF2794E25EF
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ FROM debian:buster-slim
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
ARG DEBIAN_FRONTEND=noninteractive
ARV DOVECOT_VERSION=2.3.10.1
ENV LC_ALL C
# Add groups and users before installing Dovecot to not break compatibility
@ -80,7 +81,7 @@ RUN groupadd -g 5000 vmail \
syslog-ng-core \
syslog-ng-mod-redis \
&& apt-key adv --fetch-keys https://repo.dovecot.org/DOVECOT-REPO-GPG \
&& echo 'deb https://repo.dovecot.org/ce-2.3-latest/debian/buster buster main' > /etc/apt/sources.list.d/dovecot.list \
&& echo 'deb https://repo.dovecot.org/ce-${DOVECOT_VERSION}-latest/debian/buster buster main' > /etc/apt/sources.list.d/dovecot.list \
&& apt-get update \
&& apt-get -y --no-install-recommends install \
dovecot-lua \