From: Marcel van der Veldt Date: Fri, 27 Sep 2024 01:07:40 +0000 (+0200) Subject: include pywidevine in base image X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=eef93e957a8521a71450c2e653a1f73b901f5bd0;p=music-assistant-server.git include pywidevine in base image --- diff --git a/Dockerfile.base b/Dockerfile.base index cdd02cee..bdf89a2d 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -38,11 +38,11 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH" # Upgrade pip + Install uv RUN pip install --upgrade pip \ && pip install uv==0.2.27 \ - # pre-install complicated dependencies (e.g. construct) to prevent oserror on docker + # pre-install complicated dependencies (e.g. pywidevine) to prevent oserror on docker && uv pip install \ --no-cache \ --find-links "https://wheels.home-assistant.io/musllinux/" \ - construct + pywidevine==1.8.0 LABEL \ org.opencontainers.image.title="Music Assistant Base Image" \