From 12818ce9a5ca5b8baaafb6caf903eb417412a067 Mon Sep 17 00:00:00 2001 From: Nitrousoxide Date: Sun, 19 Nov 2023 10:34:43 -0500 Subject: [PATCH 1/3] add simple dockerfile --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..ee9d1a94 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:alpine +RUN python3 -m pip install -U gallery-dl +RUN python3 -m pip install -U youtube_dl +RUN apk update +RUN apk add ffmpeg +ENTRYPOINT [ "gallery-dl" ] \ No newline at end of file From 43c6b914a2db5800e97cafd875f408d242ca6189 Mon Sep 17 00:00:00 2001 From: Nitrousoxide Date: Sun, 19 Nov 2023 11:14:24 -0500 Subject: [PATCH 2/3] Update Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit changed youtube_dl to yt-dlp and combined install line Co-authored-by: Jouni Järvinen --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ee9d1a94..110505d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,5 @@ FROM python:alpine -RUN python3 -m pip install -U gallery-dl -RUN python3 -m pip install -U youtube_dl +RUN python3 -m pip install -U gallery-dl yt-dlp RUN apk update RUN apk add ffmpeg ENTRYPOINT [ "gallery-dl" ] \ No newline at end of file From ec99d24b18d5d5af97709ddd6f81da3c798e80d0 Mon Sep 17 00:00:00 2001 From: Nitrousoxide Date: Mon, 20 Nov 2023 11:53:48 -0500 Subject: [PATCH 3/3] Update Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mike Fährmann --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 110505d3..d0d88e00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,4 +2,4 @@ FROM python:alpine RUN python3 -m pip install -U gallery-dl yt-dlp RUN apk update RUN apk add ffmpeg -ENTRYPOINT [ "gallery-dl" ] \ No newline at end of file +ENTRYPOINT [ "gallery-dl" ]