From 7d4a714e44e97c8a03abdb0c09cbd804ddb672fa Mon Sep 17 00:00:00 2001 From: wuast94 Date: Fri, 26 Apr 2024 23:03:04 +0200 Subject: [PATCH] Update Dockerfile to install ffmpeg, Python, and necessary development libraries --- Dockerfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f743af1..90734f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,15 @@ FROM nodered/node-red:3.1.9 # Switch to root to install additional packages USER root -# Update apk and install ffmpeg and Python -RUN apk update && apk add --no-cache ffmpeg python3 py3-pip +# Update apk and install ffmpeg, Python, and necessary development libraries +RUN apk update && apk add --no-cache \ + ffmpeg \ + python3 \ + py3-pip \ + libxml2-dev \ + libxslt-dev \ + build-base \ + python3-dev # Install streamlink using pip RUN pip3 install streamlink