From 7dd74ca820b19644271fc03b28903bcd3fc3c720 Mon Sep 17 00:00:00 2001 From: kaiyou Date: Wed, 29 Apr 2020 20:02:51 +0200 Subject: [PATCH] Install the requests_oauthlib Python dependency Without this library, OAuth authentication is failing due to missing import. This was installed through requirements file in the previous versions of this image. --- image/seafile_7.1/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image/seafile_7.1/Dockerfile b/image/seafile_7.1/Dockerfile index d21b8991..ba67d2ee 100644 --- a/image/seafile_7.1/Dockerfile +++ b/image/seafile_7.1/Dockerfile @@ -21,7 +21,7 @@ RUN pip3 install --timeout=3600 click termcolor colorlog pymysql \ django==1.11.29 && rm -r /root/.cache/pip RUN pip3 install --timeout=3600 Pillow pylibmc captcha jinja2 \ - sqlalchemy django-pylibmc django-simple-captcha && \ + sqlalchemy django-pylibmc django-simple-captcha requests_oauthlib && \ rm -r /root/.cache/pip