├── .gitignore ├── LICENSE ├── README.md └── datascience-base ├── .dockerignore ├── Dockerfile ├── Dockerfile.old ├── Makefile ├── README.md ├── notebook.sh └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *pyc 3 | .git 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiseio/datascience-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiseio/datascience-docker/HEAD/README.md -------------------------------------------------------------------------------- /datascience-base/.dockerignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *pyc 3 | Makefile 4 | .git 5 | data 6 | *.ipynb 7 | -------------------------------------------------------------------------------- /datascience-base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiseio/datascience-docker/HEAD/datascience-base/Dockerfile -------------------------------------------------------------------------------- /datascience-base/Dockerfile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiseio/datascience-docker/HEAD/datascience-base/Dockerfile.old -------------------------------------------------------------------------------- /datascience-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiseio/datascience-docker/HEAD/datascience-base/Makefile -------------------------------------------------------------------------------- /datascience-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiseio/datascience-docker/HEAD/datascience-base/README.md -------------------------------------------------------------------------------- /datascience-base/notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiseio/datascience-docker/HEAD/datascience-base/notebook.sh -------------------------------------------------------------------------------- /datascience-base/requirements.txt: -------------------------------------------------------------------------------- 1 | plotly 2 | gensim 3 | --------------------------------------------------------------------------------