From e1dcdb51aa5c9d455cb42321e622927f3b521be7 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Thu, 9 Mar 2023 00:42:56 +0100 Subject: [PATCH] update dockerfile --- Dockerfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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 -- 2.34.1