Pandas 0.20.3

This commit is contained in:
Felix Lohmeier 2017-10-23 11:53:42 +02:00
parent 072db12fca
commit 49b42f69b6
2 changed files with 28 additions and 2 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:3.6.3-slim
WORKDIR /usr/src/app
RUN pip install --no-cache-dir -v pandas==0.20.3
CMD [ "python" ]

View File

@ -1,2 +1,21 @@
# pandas-docker
pandas is an open source library providing data analysis tools for the Python programming language. This docker image contains pandas 0.20.3 and is build on top of the official python 3.6.3 slim image.
# Docker container for Pandas
[pandas](http://pandas.pydata.org/) is an open source library providing data analysis tools for the Python programming language. This docker image contains pandas 0.20.3 and is build on top of the official python 3.6.3 slim image.
* [GitHub Repository with Dockerbuild files](https://github.com/felixlohmeier/pandas-docker)
* [Docker Hub with docker images](https://hub.docker.com/r/felixlohmeier/pandas/)
## fixed versions
* Python 3.6.3
* Pandas 0.20.3
## usage
### python console
> docker run -it --rm felixlohmeier/pandas
### run a script
> docker run -it --rm --name my-script -v "$PWD":/usr/src/pandas:z -w /usr/src/pandas felixlohmeier/pandas python my-script.py