Fix: Install pandas dependency

This commit is contained in:
tkl 2020-01-08 11:20:45 +00:00
parent 6b67f6812e
commit 36ed9d2686

View File

@ -6,6 +6,9 @@ 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/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 if [ ! -e /usr/bin/pip ]; then ln -f /usr/bin/pip3 /usr/bin/pip ; fi
RUN pip install --upgrade pip
RUN pip install cython
RUN git clone https://git.blackfinn.de/python/bicycle-statistics.git RUN git clone https://git.blackfinn.de/python/bicycle-statistics.git
RUN cd bicycle-statistics && python setup.py install RUN cd bicycle-statistics && python setup.py install
RUN rm -rf bicycle-statistics RUN rm -rf bicycle-statistics