Skip to content

Commit 8df4569

Browse files
committed
add pandas support
1 parent a4eca16 commit 8df4569

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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))* |

pandas/0.18/2/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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

pandas/0.18/3/Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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.

0 commit comments

Comments
 (0)