Skip to content

Commit

Permalink
Update Dockerfile to install ffmpeg, Python, and necessary developmen…
Browse files Browse the repository at this point in the history
…t libraries
  • Loading branch information
wuast94 committed Apr 26, 2024
1 parent bfbd796 commit 7d4a714
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7d4a714

Please sign in to comment.