Move dependencies do bicycle-statistic's setup.
This commit is contained in:
parent
d414cbaed5
commit
6b67f6812e
16
Dockerfile
16
Dockerfile
@ -2,21 +2,15 @@ FROM alpine:latest
|
||||
|
||||
RUN apk update && apk upgrade
|
||||
|
||||
RUN apk add --update --no-cache python python-dev py-pip git gcc build-base freetype-dev libpng-dev
|
||||
|
||||
RUN yes | pip install --upgrade pip
|
||||
RUN yes | pip install watchdog
|
||||
RUN yes | pip install geopy
|
||||
RUN yes | pip install gpxpy
|
||||
RUN yes | pip install numpy
|
||||
RUN yes | pip install matplotlib
|
||||
RUN yes | pip install pandas
|
||||
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 git clone https://git.blackfinn.de/python/bicycle-statistics.git
|
||||
RUN mkdir -p /lib/systemd/system/
|
||||
RUN cd bicycle-statistics && python setup.py install
|
||||
RUN rm -rf bicycle-statistics
|
||||
|
||||
COPY run.sh /bin/
|
||||
|
||||
ENTRYPOINT [ "/bin/run.sh" ]
|
||||
ENTRYPOINT [ "/bin/run.sh" ]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user