Added unzip

This commit is contained in:
Kieran Eglin 2025-09-26 13:07:16 -07:00
parent 93d21c3434
commit 8a5af14404
No known key found for this signature in database
2 changed files with 3 additions and 1 deletions

View file

@ -13,7 +13,7 @@ RUN echo "Building for ${TARGETPLATFORM:?}"
RUN apt-get update -qq && \
apt-get install -y inotify-tools curl git openssh-client jq \
python3 python3-setuptools python3-wheel python3-dev pipx \
python3-mutagen locales procps build-essential graphviz zsh
python3-mutagen locales procps build-essential graphviz zsh unzip
# Install ffmpeg
RUN export FFMPEG_DOWNLOAD=$(case ${TARGETPLATFORM:-linux/amd64} in \

View file

@ -94,6 +94,8 @@ RUN apt-get update -y && \
python3 \
pipx \
jq \
# unzip is needed for Deno
unzip \
procps && \
# Install Deno - required for YouTube downloads (See yt-dlp#14404)
curl -fsSL https://deno.land/install.sh | sh && \