coder-enterprise-images/images/jupyter/Dockerfile.centos

19 lines
422 B
Docker
Raw Normal View History

FROM codercom/enterprise-base:centos
2020-05-01 23:01:51 +00:00
# Run everything as root
USER root
2020-05-01 23:01:51 +00:00
# Install required dependencies
RUN dnf install --assumeyes \
platform-python-devel
2020-05-01 23:01:51 +00:00
# Install jupyter
RUN python3 -m pip install --upgrade pip && \
pip3 install --upgrade setuptools && \
2023-01-11 22:24:41 +00:00
pip3 install jupyterlab==3.2.9 && \
pip3 install jupyter-core==4.6.3 && \
pip3 install notebook==6.4.10
# Set back to coder user
USER coder