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

13 lines
244 B
Docker
Raw Normal View History

FROM codercom/enterprise-base:ubuntu
2020-05-01 23:01:51 +00:00
# Run everything as root
USER root
2020-05-01 23:01:51 +00:00
# Install jupyter
2023-01-11 22:24:41 +00:00
RUN pip3 install jupyterlab==3.5.2 && \
pip3 install jupyter-core==5.1.3 && \
pip3 install notebook==6.5.2
2020-05-01 23:01:51 +00:00
# Set back to coder user
USER coder