Skip to content
This repository was archived by the owner on Sep 23, 2022. It is now read-only.

Commit 8d07e38

Browse files
authored
Merge pull request #33 from linuxserver/pipfix
fix pip install
2 parents 867103c + 65643dc commit 8d07e38

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ RUN \
8585
/tmp/paperless.tar.gz -C \
8686
/app/paperless/ --strip-components=1 && \
8787
echo "**** install pip packages ****" && \
88-
cd /app/paperless && \
88+
cd / && \
8989
pip3 install -U pip setuptools==60.10.0 wheel && \
90-
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/ubuntu/ -r requirements.txt && \
90+
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/ubuntu/ -r /app/paperless/requirements.txt && \
9191
echo "**** cleanup ****" && \
9292
apt-get purge -y --auto-remove \
9393
$BUILD_PACKAGES && \

Dockerfile.aarch64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ RUN \
8686
/tmp/paperless.tar.gz -C \
8787
/app/paperless/ --strip-components=1 && \
8888
echo "**** install pip packages ****" && \
89-
cd /app/paperless && \
89+
cd / && \
9090
pip3 install -U pip setuptools==60.10.0 wheel && \
91-
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/ubuntu/ -r requirements.txt && \
91+
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/ubuntu/ -r /app/paperless/requirements.txt && \
9292
echo "**** add libqpdf ****" && \
9393
LIBQPDFURL=$(curl -sL https://wheel-index.linuxserver.io/ubuntu/ | grep "focal-arm64v8.tar" | sed "s|.*'\(.*\)'.*|\1|") && \
9494
curl -o \

Dockerfile.armhf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ RUN \
9393
/tmp/paperless.tar.gz -C \
9494
/app/paperless/ --strip-components=1 && \
9595
echo "**** install pip packages ****" && \
96-
cd /app/paperless && \
97-
pip3 install -U --no-cache-dir pip setuptools==60.10.0 wheel && \
98-
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/ubuntu/ -r requirements.txt && \
96+
cd / && \
97+
pip3 install -U pip setuptools==60.10.0 wheel && \
98+
pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/ubuntu/ -r /app/paperless/requirements.txt && \
9999
echo "**** add libqpdf ****" && \
100100
LIBQPDFURL=$(curl -sL https://wheel-index.linuxserver.io/ubuntu/ | grep "focal-arm32v7.tar" | sed "s|.*'\(.*\)'.*|\1|") && \
101101
curl -o \

0 commit comments

Comments
 (0)