Docker base image with pandas built on miniconda. Built on phusion/baseimage.
This image uses miniconda to install a data science toolkit consisting of:
- dateutil
- matplotlib
- numpy
- pandas
- pytables
- scipy
and good 'ole pip
.
This package is available on quay.io
docker run -it quay.io/humu/pandas /bin/bash
Create a Dockerfile based on this image and add your stuff.
docker is required to build, test, and release this package to docker.io.
After installing boot2docker do:
boot2docker up
$(boot2docker shellinit)
Build is about 10 minutes the first time. Much faster after that thanks to docker caching.
make build
This runs the pandas test suite on the newly built image. It takes about 10 minutes.
make test