From 338a4d9761be565337e19739a953f4be25cccb63 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Mon, 1 Nov 2021 18:56:08 +0200 Subject: [PATCH] Pin Pillow version in dockerfile to same as alpine. Fixes #683 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f101293e..72e4197c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,7 +54,8 @@ RUN apk add --virtual .build-deps \ libffi-dev \ build-base \ && sed -Ei 's/psycopg2-binary.+//' optional-requirements.txt \ - && pip3 install -r requirements.txt -r optional-requirements.txt \ + # TODO: unpin Pillow here after it's updated in Alpine + && pip3 install -r requirements.txt -r optional-requirements.txt 'pillow==8.2' \ && apk del .build-deps COPY . /opt/mautrix-telegram