Basic docker image building steps to build a Python image that contains local packages and pandas (which requires additional things to be installed into Docker base image).
Build Docker image with...
$ docker build -t your-image-name:tag .See what images you have installed...
$ docker imagesRun an image in a container, have the container close on exit, and open a bash prompt in the image...
$ docker run -it --rm your-image-name:tag /bin/bashTag the image if you haven't already (otherwise just login)...
$ docker tag your-image-name your-docker-username/your-image-name:tagLog in to Docker...
$ docker loginPush the image...
$ docker push your-dockerhub-username/your-image-name:tagDelete an image...
$ docker rmi your-image-name:tag