From f0211e0134d8ecf756be848a8d18de7a1dd1ce8a Mon Sep 17 00:00:00 2001
From: Robert Goldmann <deadlocker@gmx.de>
Date: Sat, 2 May 2020 15:01:56 +0200
Subject: [PATCH] use only TheCodeLabs-BaseUtils (no gevent dependency) +
 resetted Dockerfile

---
 Dockerfile | 4 ----
 Pipfile    | 2 +-
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index a334eb1..63b024c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,5 @@
 FROM python:3.7-alpine
 
-RUN apk add --no-cache --virtual .build-deps gcc musl-dev libffi-dev py3-gevent
-
 RUN pip install pipenv
 COPY . /opt/SpotifyBackup
 
@@ -9,6 +7,4 @@ WORKDIR /opt/SpotifyBackup
 RUN pipenv install
 RUN ln -s $(pipenv --venv) /opt/SpotifyBackup/mypipenv
 
-RUN apk del .build-deps gcc musl-dev libffi-dev py3-gevent
-
 CMD [ "/opt/SpotifyBackup/mypipenv/bin/python", "/opt/SpotifyBackup/SpotifyBackup.py" ]
\ No newline at end of file
diff --git a/Pipfile b/Pipfile
index 012c49c..0256f0b 100644
--- a/Pipfile
+++ b/Pipfile
@@ -13,6 +13,6 @@ python_version = "3.7"
 
 [packages]
 spotipy = "==2.10.0"
-PythonLibs = "==1.0.0"
+TheCodeLabs-BaseUtils = "==1.0.0"
 
 [dev-packages]
-- 
GitLab