paperless icon indicating copy to clipboard operation
paperless copied to clipboard

docker-compose fails to build with the last version of Pipenv

Open CkuT opened this issue 4 years ago • 3 comments

Hey,

docker-compose up -d fails to build & start with the last version of Pipenv. The displayed error is very similar to this one: https://github.com/pypa/pipenv/issues/4220

A working workaround for me was to use an older version of Pipenv in the Dockerfile, as described in the linked issue above:

    cd /usr/src/paperless && \
-   pip3 install --upgrade pip pipenv && \
+   pip3 install --upgrade pip pipenv==2018.11.26 && \
    pipenv install --system --deploy && \

CkuT avatar Aug 04 '20 11:08 CkuT

I'm seeing the exact same. Thanks for the workaround!

smarticu5 avatar Aug 05 '20 15:08 smarticu5

I am having this same error and your fix helps on Raspberry Pi. Big thx CkuT !!!

$ uname -a
Linux raspberrypi 4.19.118-v7l+ #1311 SMP Mon Apr 27 14:26:42 BST 2020 armv7l GNU/Linux

suhrmann avatar Aug 07 '20 09:08 suhrmann

Thanks for the workaround. Do you mind opening a pull request to fix the issue?

Tooa avatar Aug 08 '20 09:08 Tooa