From e98f1e483606d1da9482ea53e6170539fa68a7ee Mon Sep 17 00:00:00 2001 From: viktor_petukhov Date: Fri, 15 Nov 2024 09:33:30 -0500 Subject: [PATCH] Removed Jupyter from the docker --- Dockerfile | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/Dockerfile b/Dockerfile index c464a9e..e80fc8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,19 +2,7 @@ FROM julia:latest RUN apt-get update && apt-get install -y build-essential -## Jupyter - -RUN apt-get install -y python3 python3-pip vim - -RUN pip3 install jupyterlab numpy scipy matplotlib seaborn pandas sklearn scikit-image - -RUN pip3 install -Iv six==1.12.0 - -RUN julia -e 'using Pkg; Pkg.add("IJulia"); Pkg.build(); using IJulia;' - -### jupyter notebook --no-browser --port=8989 --ip=0.0.0.0 --allow-root ./ - -## Julia Baysor envitonment +ENV JULIA_NUM_THREADS=30 ### Ignore cache (https://stackoverflow.com/questions/35134713/disable-cache-for-specific-run-commands) ARG CACHEBUST=1