From c7fee80c655c7f8abce2deca3c17d715ceb89567 Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Wed, 24 May 2017 10:22:02 -0700 Subject: [PATCH] Install 3.1.0rc1 from PyPI for the stable image. --- core/Dockerfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/core/Dockerfile b/core/Dockerfile index 3102de6..38c5f0e 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -6,12 +6,11 @@ MAINTAINER Abhilash Raj # from the Gitlab. RUN apk update \ && apk add --virtual build-deps gcc python3-dev musl-dev wget \ - && apk add postgresql-dev bash su-exec \ - && wget -O mailman.zip https://gitlab.com/mailman/mailman/repository/archive.zip?ref=master \ - && wget -O mailman_hyperkitty.zip https://gitlab.com/mailman/mailman-hyperkitty/repository/archive.zip?ref=master \ - && pip install mailman.zip mailman_hyperkitty.zip psycopg2 \ - && rm mailman.zip mailman_hyperkitty.zip \ - && apk del build-deps + && apk add postgresql-dev bash su-exec \ + && wget -O mailman_hyperkitty.zip https://gitlab.com/mailman/mailman-hyperkitty/repository/archive.zip?ref=master \ + && pip install mailman_hyperkitty.zip psycopg2 mailman==3.1.0rc1 \ + && rm mailman_hyperkitty.zip \ + && apk del build-deps ADD assets/run.sh /opt/run.sh