From 7ce5d4a709cb53cd878138a3bf7d4912925fca29 Mon Sep 17 00:00:00 2001 From: Eugene Amos Date: Thu, 16 Nov 2023 15:04:48 -0800 Subject: [PATCH] qbittorrent > remove Dockerfile and added private repo --- qbittorrent/Dockerfile | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 qbittorrent/Dockerfile diff --git a/qbittorrent/Dockerfile b/qbittorrent/Dockerfile deleted file mode 100644 index ebab107..0000000 --- a/qbittorrent/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ - -# Use the linuxserver/qbittorrent image as a base -FROM linuxserver/qbittorrent:latest - -# Install Python3 and pip3 using apk -RUN apk update && \ - apk add --no-cache python3 py3-pip - -# Create a Python virtual environment and install qbittorrent-api -RUN python3 -m venv /opt/venv && \ - . /opt/venv/bin/activate && \ - pip3 install --upgrade pip && \ - pip3 install qbittorrent-api - -# Ensure commands run inside the virtual environment -ENV PATH="/opt/venv/bin:$PATH" - -# Any other customizations can be added here - - - -