This is docker image for Python3, Jupyter and Pandas, based on alpine linux
You can run the command below:
docker run -d --name jupyter -p 8888:8888 -v YOU_VOL_FOLDER:/opt playniuniu/jupyter-pandas
and visit http://localhost:8888 for jupyter notebook
You can use the command in jupyter to plot images
import numpy as np
import matplotlib.pylab as plt
plt.plot(np.arange(1, 10, 2))
and you can see the imags below: