Pandas 0.20.3
This commit is contained in:
parent
072db12fca
commit
49b42f69b6
|
@ -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" ]
|
23
README.md
23
README.md
|
@ -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
|
Loading…
Reference in New Issue