Docker run command
docker run -d -p 8888:8888 --rm glovebox/jupyter-datascience:latest
See Raspberry Pi Kubernetes Cluster
FROM balenalib/raspberrypi3:buster
RUN useradd -ms /bin/bash jupyter && \
mkdir /notebooks && \
chown jupyter /notebooks
RUN apt update && apt install -y libatlas-base-dev python3-pip python3-numpy python3-pandas python3-scipy python3-matplotlib
RUN pip3 install --upgrade jupyter
RUN python3 -m pip install https://github.com/leigh-johnson/Tensorflow-bin/blob/master/tensorflow-2.0.0-cp37-cp37m-linux_armv7l.whl?raw=true
USER jupyter
WORKDIR /notebooks
CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--no-browser", "--NotebookApp.token=''"]
Content type
Image
Digest
Size
381.6 MB
Last updated
over 6 years ago
docker pull glovebox/jupyter-datascience