From 489876aa1fc4ce4fdddbd444f78d6fbcfcf8a561 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Tue, 6 Sep 2022 09:34:38 -0400 Subject: [PATCH] add yt-dlp --- amd64.dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/amd64.dockerfile b/amd64.dockerfile index 6f877f8..99ccbb7 100644 --- a/amd64.dockerfile +++ b/amd64.dockerfile @@ -17,6 +17,10 @@ RUN \ mkvtoolnix \ zip \ tidy && \ + echo "************ install python packages ************" && \ + python3 -m pip install --no-cache-dir -U \ + yq \ + yt-dlp && \ echo "************ setup SMA ************" && \ echo "************ setup directory ************" && \ mkdir -p ${SMA_PATH} && \ @@ -30,10 +34,7 @@ RUN \ chmod g+w ${SMA_PATH}/config/sma.log && \ echo "************ install pip dependencies ************" && \ python3 -m pip install --user --upgrade pip && \ - pip3 install -r ${SMA_PATH}/setup/requirements.txt && \ - echo "************ install python packages ************" && \ - python3 -m pip install --no-cache-dir -U \ - yq + pip3 install -r ${SMA_PATH}/setup/requirements.txt WORKDIR /config