Skip to content

Commit

Permalink
Merge pull request #3 from linuxserver/pip
Browse files Browse the repository at this point in the history
Let pip ignore installed packages
  • Loading branch information
Roxedus authored Jul 8, 2021
2 parents f72d6fd + 65f379c commit 9191879
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN \
cd /app/babybuddy && \
pip3 install -U --no-cache-dir \
pip && \
pip install -U --find-links https://wheel-index.linuxserver.io/alpine/ -r requirements.txt && \
pip install -U --ignore-installed --find-links https://wheel-index.linuxserver.io/alpine/ -r requirements.txt && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN \
cd /app/babybuddy && \
pip3 install -U --no-cache-dir \
pip && \
pip install -U --find-links https://wheel-index.linuxserver.io/alpine/ -r requirements.txt && \
pip install -U --ignore-installed --find-links https://wheel-index.linuxserver.io/alpine/ -r requirements.txt && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.armhf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN \
cd /app/babybuddy && \
pip3 install -U --no-cache-dir \
pip && \
pip install -U --find-links https://wheel-index.linuxserver.io/alpine/ -r requirements.txt && \
pip install -U --ignore-installed --find-links https://wheel-index.linuxserver.io/alpine/ -r requirements.txt && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,5 +202,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **08.07.21:** - Fix pip install issue.
* **05.07.21:** - Update Gunicorn parameters to prevent `WORKER_TIMEOUT` issue.
* **22.06.21:** - Initial release.
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,6 @@ app_setup_block: |
# changelog
changelogs:
- { date: "08.07.21:", desc: "Fix pip install issue." }
- { date: "05.07.21:", desc: "Update Gunicorn parameters to prevent `WORKER_TIMEOUT` issue." }
- { date: "22.06.21:", desc: "Initial release." }

0 comments on commit 9191879

Please sign in to comment.