Basic Jupyter Notebook container image for Python
397
This is a basic Jupyter Notebook container image for use with Python notebooks. The image is based on CentOS 7.9 with Python 3.6.8 and offers the following Python libraries:
The container launches Juypyter on all container interfaces and port 8888 by default.
This is the Dockerfile:
FROM centos:centos7.9.2009
RUN yum update -y
RUN yum install python3-pip -y
RUN python3 -m pip install --upgrade --force pip
RUN pip3 install --upgrade setuptools
RUN pip3 install jupyter
RUN pip3 install pandas
RUN pip3 install matplotlib
RUN pip3 install seaborn
LABEL org.opencontainers.image.created="2023-03-08T15:26:50Z"
LABEL org.opencontainers.image.description="Generic Jupyter notebook image"
LABEL org.opencontainers.image.url="https://hub.docker.com/r/rxmllc/jupyter"
LABEL org.opencontainers.image.vendor="rx-m llc"
EXPOSE 8888
CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--allow-root"]
Content type
Image
Digest
sha256:8d2a9ff2a…
Size
434.4 MB
Last updated
over 3 years ago
docker pull rxmllc/jupyter:1.0.0