diff --git a/Dockerfile b/Dockerfile index 6088b88..82bb9dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,6 +53,7 @@ RUN \ uv venv /lsiopy && \ uv run scripts/bundle_webui.py && \ uv sync --frozen --no-dev --no-cache --group=all && \ + uv pip install pip && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ apk del --purge \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 80ab71d..30d025f 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -53,6 +53,7 @@ RUN \ uv venv /lsiopy && \ uv run scripts/bundle_webui.py && \ uv sync --frozen --no-dev --no-cache --group=all && \ + uv pip install pip && \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ apk del --purge \ diff --git a/README.md b/README.md index 8f88f04..fd5788a 100644 --- a/README.md +++ b/README.md @@ -300,6 +300,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **17.10.25:** - Add pip to enable [universal-package-install mod](https://github.com/linuxserver/docker-mods/tree/universal-package-install). * **18.09.24:** - Suppress creation of empty log file when WebUI password is set. * **17.08.24:** - Revert to Alpine 3.20 due to 1st party plugin incompatibility with Python 3.12. * **19.06.24:** - Rebase to Alpine 3.20. diff --git a/readme-vars.yml b/readme-vars.yml index a0f48db..046f6d7 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -92,6 +92,7 @@ init_diagram: | "flexget:latest" <- Base Images # changelog changelogs: + - {date: "17.10.25:", desc: "Add pip to enable [universal-package-install mod](https://github.com/linuxserver/docker-mods/tree/universal-package-install)."} - {date: "18.09.24:", desc: "Suppress creation of empty log file when WebUI password is set."} - {date: "17.08.24:", desc: "Revert to Alpine 3.20 due to 1st party plugin incompatibility with Python 3.12."} - {date: "19.06.24:", desc: "Rebase to Alpine 3.20."}