From e9132ee61a6e3569e6d0c63f0559d68922cf53d0 Mon Sep 17 00:00:00 2001 From: Soap Date: Wed, 8 Oct 2025 00:08:53 +0000 Subject: [PATCH] Add Dockerfile to the build --- copyparty/Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 copyparty/Dockerfile diff --git a/copyparty/Dockerfile b/copyparty/Dockerfile new file mode 100644 index 0000000..69e338f --- /dev/null +++ b/copyparty/Dockerfile @@ -0,0 +1,14 @@ +FROM copyparty/ac + +ENV PYTHONUNBUFFERED=1 +RUN apk add --update --no-cache python3 py3-pip pipx + +# idc +RUN python3 -m pip config set global.break-system-packages true + +# I tried shoving the binaries, but muh architectures +RUN python3 -m pip install yt-dlp aria2 + +RUN yt-dlp --version + +RUN aria2c --version \ No newline at end of file