File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33Python docker images on alpine linux.
44
5- Inspireded from * [ @amancevice ] ( https://github.com/amancevice/pandas ) *
5+ Inspireded from [ @amancevice ] ( https://github.com/amancevice/pandas ) and [ jfloff ] ( https://github.com/jfloff/alpine-python )
66
77## Images list
88
9- ###### [ Python] ( https://hub.docker.com/r/phirov/python/ )
109
1110| image | version | Dockerfiles |
1211-----------|---------|------------------
13- | ** python** | ` 2 ` , ` latest ` | * ([ 2/Dockerfile] ( https://github.com/phirov/docker-python/tree/master/pure/2/Dockerfile ) )* |
14- | | ` 3 ` | * ([ 3/Dockerfile] ( https://github.com/phirov/docker-python/tree/master/pure/3/Dockerfile ) )* |
12+ | ** python** | ` 2 ` , ` latest ` | * ([ 2/Dockerfile] ( https://github.com/phirov/docker-python/tree/master/python/2/Dockerfile ) )* |
13+ | | ` 3 ` | * ([ 3/Dockerfile] ( https://github.com/phirov/docker-python/tree/master/python/3/Dockerfile ) )* |
14+ | ** pandas** | ` 0.19-2 ` , ` latest ` | * ([ 0.19/2/Dockerfile] ( https://github.com/phirov/docker-python/tree/master/pandas/0.19/2/Dockerfile ) )* |
15+ | | ` 0.19-3 ` | * ([ 0.19/3/Dockerfile] ( https://github.com/phirov/docker-python/tree/master/pandas/0.19/3/Dockerfile ) )* |
16+ | | ` 0.18-2 ` | * ([ 0.18/2/Dockerfile] ( https://github.com/phirov/docker-python/tree/master/pandas/0.18/2/Dockerfile ) )* |
17+ | | ` 0.18-3 ` | * ([ 0.18/3/Dockerfile] ( https://github.com/phirov/docker-python/tree/master/pandas/0.18/3/Dockerfile ) )* |
Original file line number Diff line number Diff line change 1+ # consult: https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices
2+ # Forked: https://hub.docker.com/r/amancevice/pandas
3+ FROM phirov/python:2
4+ MAINTAINER phirov@163.com
5+
6+ RUN pip install numpy==1.11.2 cython==0.25.1 && \
7+ pip install pandas==0.19.1
Original file line number Diff line number Diff line change 1+ # consult: https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/#/add-or-copy
2+ # Forked: https://hub.docker.com/r/amancevice/pandas
3+ FROM phirov/python:3
4+ MAINTAINER phirov@163.com
5+
6+ RUN pip3 install numpy==1.11.2 cython==0.25.1 && \
7+ pip3 install pandas==0.19.1
Original file line number Diff line number Diff line change 1+ # consult: https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices
2+ # Forked: https://hub.docker.com/r/amancevice/pandas
3+ FROM phirov/python:2
4+ MAINTAINER phirov@163.com
5+
6+ RUN pip install numpy==1.11.2 cython==0.25.1 && \
7+ pip install pandas
Original file line number Diff line number Diff line change 1+ # consult: https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/#/add-or-copy
2+ # Forked: https://hub.docker.com/r/amancevice/pandas
3+ FROM phirov/python:3
4+ MAINTAINER phirov@163.com
5+
6+ RUN pip3 install numpy==1.11.2 cython==0.25.1 && \
7+ pip3 install pandas
Original file line number Diff line number Diff line change 11# consult: https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/#/add-or-copy
22# Forked: https://hub.docker.com/r/amancevice/pandas
3- FROM alpine:3.4
4- MAINTAINER phirov@163.com
3+ FROM alpine:3.4
4+ MAINTAINER phirov@163.com
55
6- RUN apk add --no-cache python-dev py-pip g++ && \
7- ln -s /usr/include/locale.h /usr/include/xlocale.h
6+ RUN apk add --no-cache python-dev py-pip g++ && \
7+ ln -s /usr/include/locale.h /usr/include/xlocale.h && \
8+ pip install --upgrade pip
Original file line number Diff line number Diff line change 11# consult: https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/#/add-or-copy
22# Forked: https://hub.docker.com/r/amancevice/pandas
3- FROM alpine:3.4
4- MAINTAINER phirov@163.com
3+ FROM alpine:3.4
4+ MAINTAINER phirov@163.com
55
6- RUN apk add --no-cache python3-dev g++ && \
7- ln -s /usr/include/locale.h /usr/include/xlocale.h
6+ RUN apk add --no-cache python3-dev g++ && \
7+ ln -s /usr/include/locale.h /usr/include/xlocale.h && \
8+ pip3 install --upgrade pip
You can’t perform that action at this time.
0 commit comments