diff --git a/docker/Dockerfile b/docker/Dockerfile index 63d2ce19..ad0bed55 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -16,10 +16,12 @@ RUN mkdir -p /config && \ py3-pip \ fontconfig \ py3-setuptools && \ - # Install edge ffmpeg, ensure it is properly installed + # Install edge ffmpeg and aria2 from community, ensure they are properly installed apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \ - "ffmpeg>5.1" && \ - ffmpeg -version && \ + "ffmpeg>5.1" \ + "aria2>=1.36.0" && \ + ffmpeg -version && \ + aria2c --version && \ # Install phantomjs if using x86_64, ensure it is properly installed if [[ $(uname -m) == "x86_64" ]]; then \ cd /usr/share && \ diff --git a/docker/Dockerfile.ubuntu b/docker/Dockerfile.ubuntu index 145bffa9..48e2f846 100644 --- a/docker/Dockerfile.ubuntu +++ b/docker/Dockerfile.ubuntu @@ -28,6 +28,7 @@ RUN mkdir -p /config && \ fontconfig \ xz-utils \ bzip2 \ + aria2 \ python3-venv && \ if [[ $(uname -m) == "x86_64" ]]; then \ curl -L -o ffmpeg.tar.gz https://github.com/yt-dlp/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linux64-gpl.tar.xz && \