File tree Expand file tree Collapse file tree 5 files changed +18
-4
lines changed
Expand file tree Collapse file tree 5 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Inspireded from *[@amancevice](https://github.com/amancevice/pandas)*
88
99###### [ Python] ( https://hub.docker.com/r/phirov/python/ )
1010
11- | image | version | Dockerfiles |
12- ----------|---------|------------------
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 ) )* |
11+ | image | version | Dockerfiles |
12+ ----------- |---------|------------------
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 ) )* |
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.18.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.18.1
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments