update dockerfile
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Wed, 8 Mar 2023 23:42:56 +0000 (00:42 +0100)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Wed, 8 Mar 2023 23:42:56 +0000 (00:42 +0100)
Dockerfile

index c38b6a05912defa301b7f9cb4417907924c9a1f5..580898721903bb05efae836ba5e648e7800a6f87 100644 (file)
@@ -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