From 9efda8aa4f45e51501bebc45a82f86e95598c70e Mon Sep 17 00:00:00 2001 From: realitygaps Date: Wed, 5 Dec 2018 21:34:53 +0100 Subject: [PATCH] Specific version of redis to work with celery This is needed for using with pretalx-docker due to https://github.com/pretalx/pretalx/issues/534 and https://github.com/celery/celery/issues/5175 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bd4351ab34..30a2b48df6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,8 @@ RUN mkdir /static && \ pip3 install -U pip setuptools wheel typing && \ pip3 install -e src/ && \ pip3 install django-redis pylibmc mysqlclient psycopg2 && \ - pip3 install gunicorn && \ + pip3 install gunicorn && \ + pip3 install redis==2.10.6 && \ chmod +x /usr/local/bin/pretalx RUN mkdir -p /data/logs /data/media