diff --git a/docker/Dockerfile.full b/docker/Dockerfile.full index c5d8d849e..92d6700f0 100644 --- a/docker/Dockerfile.full +++ b/docker/Dockerfile.full @@ -62,6 +62,9 @@ RUN apt-get -y install \ # python pip RUN python3 -m pip install --upgrade pip +# pyvips is broken on x86 due to mismatch ffi +# https://stackoverflow.com/questions/62658237/it-seems-that-the-version-of-the-libffi-library-seen-at-runtime-is-different-fro +RUN pip install --force-reinstall --no-binary :all: cffi RUN python3 -m pip install aiofiles debugpy typing_extensions typing psutil ################################################################ diff --git a/docker/template/Dockerfile.full.header b/docker/template/Dockerfile.full.header index dde156b0f..6e9600d88 100644 --- a/docker/template/Dockerfile.full.header +++ b/docker/template/Dockerfile.full.header @@ -59,6 +59,9 @@ RUN apt-get -y install \ # python pip RUN python3 -m pip install --upgrade pip +# pyvips is broken on x86 due to mismatch ffi +# https://stackoverflow.com/questions/62658237/it-seems-that-the-version-of-the-libffi-library-seen-at-runtime-is-different-fro +RUN pip install --force-reinstall --no-binary :all: cffi RUN python3 -m pip install aiofiles debugpy typing_extensions typing psutil ################################################################