From 82228120d914a4cfb22c63fef20db4983af048b2 Mon Sep 17 00:00:00 2001 From: Thomas Klaehn Date: Tue, 11 Aug 2020 14:27:09 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 18bdc63..6799046 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,13 +6,15 @@ RUN apk add --update --no-cache python3 python3-dev git build-base freetype-dev if [ ! -e /usr/bin/python ]; then ln -f /usr/bin/python3 /usr/bin/python ; fi && \ if [ ! -e /usr/bin/pip ]; then ln -f /usr/bin/pip3 /usr/bin/pip ; fi +RUN apk add jpeg-dev zlib-dev + RUN pip install --upgrade pip && \ pip install cython && \ pip install numpy && \ pip install geopy && \ pip install gpxpy && \ pip install matplotlib && \ - pip install pandas + pip install pandas==1.0.0 RUN git clone https://git.blackfinn.de/python/bicycle-statistics.git RUN cd bicycle-statistics && python setup.py install