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

13 lines
244 B
Docker

FROM codercom/enterprise-base:ubuntu
# Run everything as root
USER root
# Install jupyter
RUN pip3 install jupyterlab==3.5.2 && \
pip3 install jupyter-core==5.1.3 && \
pip3 install notebook==6.5.2
# Set back to coder user
USER coder