From: Marcel van der Veldt Date: Wed, 8 Mar 2023 23:42:56 +0000 (+0100) Subject: update dockerfile X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=e1dcdb51aa5c9d455cb42321e622927f3b521be7;p=music-assistant-server.git update dockerfile --- diff --git a/Dockerfile b/Dockerfile index c38b6a05..58089872 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,18 +6,18 @@ ENV WHEELS_LINKS=https://wheels.home-assistant.io/musllinux/ # Install component packages RUN \ apk add --no-cache \ - curl \ - ffmpeg \ - ffmpeg-libs \ - git \ - libjpeg-turbo \ - mariadb-connector-c + curl \ + ffmpeg \ + ffmpeg-libs \ + git \ + libjpeg-turbo \ + mariadb-connector-c COPY . ./ # Install mass wheel and dependencies -RUN pip3 install --no-cache-dir --no-index --only-binary=:all: --find-links ${WHEELS_LINKS} \ - .[server] +RUN pip3 install --no-cache-dir --find-links ${WHEELS_LINKS} \ + .[server] EXPOSE 8095/tcp