bicycle-statistics/Dockerfile

20 lines
576 B
Docker
Raw Normal View History

FROM alpine:latest
RUN apk update && apk upgrade
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
2020-01-08 11:20:45 +00:00
RUN pip install --upgrade pip
2020-01-08 11:47:50 +00:00
RUN pip install geopy gpxpy matplotlib numpy pandas
2020-01-08 11:20:45 +00:00
RUN git clone https://git.blackfinn.de/python/bicycle-statistics.git
RUN cd bicycle-statistics && python setup.py install
RUN rm -rf bicycle-statistics
COPY run.sh /bin/
ENTRYPOINT [ "/bin/run.sh" ]