From d07bdedc12348e60c75db0f63d4fe117f4f1dc39 Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Thu, 28 Dec 2017 16:13:44 -0800 Subject: [PATCH] Upgrade Postorius to 1.1.2 (#209) * Upgrade Postorius to 1.1.2 * Install django before django-mailman3 * Do not upgrade installed dependencies so that django remains compatible --- web/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/Dockerfile b/web/Dockerfile index 9bf442d..60f1d35 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -15,8 +15,9 @@ RUN set -ex \ postgresql-dev mariadb-dev \ && apk add --no-cache --virtual .mailman-rundeps bash sassc \ postgresql-client mysql-client py-mysqldb curl \ - && pip install -U mailmanclient==3.1.1 \ - postorius==1.1.1 \ + && pip install -U django==1.11 \ + && pip install mailmanclient==3.1.1 \ + postorius==1.1.2 \ hyperkitty==1.1.4 \ django-mailman3==1.1.0 \ whoosh \ @@ -24,7 +25,6 @@ RUN set -ex \ psycopg2 \ dj-database-url \ mysqlclient \ - && pip install -U django==1.10 \ && apk del .build-deps \ && addgroup -S mailman \ && adduser -S -G mailman mailman \