Skip to content

Commit

Permalink
jupyter
Browse files Browse the repository at this point in the history
  • Loading branch information
ivukotic committed Oct 22, 2024
1 parent 6673267 commit a7daebd
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ FROM ivukotic/ml_base:oct_upgrade

LABEL maintainer Ilija Vukotic <[email protected]>


RUN mkdir /workspace
COPY private_jupyter_notebook_config.py /usr/local/etc/jupyter_notebook_config.py

#############################
# Python 3 packages
#############################
Expand Down Expand Up @@ -45,7 +49,8 @@ RUN . base/bin/activate && \
RISE \
Cython && \
python -m pip install --upgrade pip && \
python -m ipykernel install --name py312 --display-name "Python 3.12"
python -m ipykernel install --name py312 --display-name "Python 3.12" && \
jupyter server extension enable --py jupyterlab --sys-prefix


# build info
Expand All @@ -61,12 +66,6 @@ COPY shell /.shell

RUN chmod 755 .exec .run .shell


RUN mkdir /workspace
COPY private_jupyter_notebook_config.py /usr/local/etc/jupyter_notebook_config.py

RUN jupyter server extension enable --py jupyterlab --sys-prefix

RUN git clone https://github.com/maniaclab/ML_platform_tests.git

RUN echo "Done"
Expand Down

0 comments on commit a7daebd

Please sign in to comment.