From 09e60759d51d954bacee41402997b72f6d3ee996 Mon Sep 17 00:00:00 2001
From: Robert Goldmann <deadlocker@gmx.de>
Date: Sat, 2 May 2020 13:14:13 +0200
Subject: [PATCH] install cython from package manager

---
 Dockerfile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index c181ef9..d14ed1b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,8 @@
 FROM python:3.7-alpine
 
-RUN apk add py3-gevent
+RUN apk add --no-cache --virtual .build-deps gcc musl-dev \
+     && pip install cython \
+     && apk del .build-deps gcc musl-dev
 
 RUN pip install pipenv
 COPY . /opt/SpotifyBackup
-- 
GitLab