From 60cd54f436e679c6c19f41967a4e52db39e36f37 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Wed, 15 Apr 2020 12:04:05 +0100 Subject: [PATCH] moved Dockerfile to separate repo --- Dockerfile | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index b655095..0000000 --- a/Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM python:3.8.2-buster - -RUN apt update -y - -RUN apt install unzip python3-pip python3-dev libsasl2-dev libldap2-dev libssl-dev -y - -RUN cd /opt && wget https://github.com/hrfee/jellyfin-accounts/archive/master.zip - -RUN cd /opt && unzip master.zip - -RUN pip install pyOpenSSL - -RUN pip install -r /opt/jellyfin-accounts-master/requirements.txt - -RUN cd /opt/jellyfin-accounts-master && python3 setup.py install - -ENTRYPOINT [ "python3", "/usr/local/bin/jf-accounts", "-d", "/data" ]