paperless
paperless copied to clipboard
docker-compose fails to build with the last version of Pipenv
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 && \
I'm seeing the exact same. Thanks for the workaround!
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
Thanks for the workaround. Do you mind opening a pull request to fix the issue?