Version bump
This commit is contained in:
parent
82228120d9
commit
fd1210b128
10
Dockerfile
10
Dockerfile
@ -2,13 +2,15 @@ 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
|
||||
RUN apk add --update --no-cache python3 python3-dev py-pip 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 wheel && \
|
||||
pip install cython && \
|
||||
pip install numpy && \
|
||||
pip install geopy && \
|
||||
@ -17,7 +19,7 @@ RUN pip install --upgrade pip && \
|
||||
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
|
||||
RUN cd bicycle-statistics && python3 setup.py install
|
||||
RUN rm -rf bicycle-statistics
|
||||
|
||||
COPY run.sh /bin/
|
||||
|
Loading…
Reference in New Issue
Block a user