From 3bdbf99045086560aa7f65fe1199654bf60bb2aa Mon Sep 17 00:00:00 2001
From: Robert Goldmann <deadlocker@gmx.de>
Date: Sat, 2 May 2020 13:16:38 +0200
Subject: [PATCH] keep dependencies

---
 Dockerfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index d14ed1b..547ba06 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,8 +1,6 @@
 FROM python:3.7-alpine
 
-RUN apk add --no-cache --virtual .build-deps gcc musl-dev \
-     && pip install cython \
-     && apk del .build-deps gcc musl-dev
+RUN apk add --no-cache --virtual .build-deps gcc musl-dev
 
 RUN pip install pipenv
 COPY . /opt/SpotifyBackup
@@ -11,4 +9,6 @@ WORKDIR /opt/SpotifyBackup
 RUN pipenv install
 RUN ln -s $(pipenv --venv) /opt/SpotifyBackup/mypipenv
 
+RUN apk del .build-deps gcc musl-dev
+
 CMD [ "/opt/SpotifyBackup/mypipenv/bin/python", "/opt/SpotifyBackup/SpotifyBackup.py" ]
\ No newline at end of file
-- 
GitLab