From eb7d75a8524125257ff4453ac90e6ed5d08bbaaa Mon Sep 17 00:00:00 2001 From: Jan Kieseler Date: Wed, 20 Sep 2023 22:53:06 +0200 Subject: [PATCH] change in order in docker file --- Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index ec8900c..436042d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -75,11 +75,12 @@ RUN apt-get install -y git RUN python3 -m pip install ipython RUN apt-get install -y tk # for dawn +# add jupyter packages for UC2 on top so they don't need to be installed every time +RUN python3 -m pip install jupyterlab jupyterhub==3.1.1 batchspawner +RUN ln -s /usr/bin/python3 /usr/bin/python + +#finally the package ARG INCUBATOR_VER ADD minicalosim /root/minicalosim RUN cd && cd minicalosim && mkdir build && cd build && cmake ../ && make -j4 &&\ cp minicalo* ../bind/G4Calo.py /usr/local/lib/python3.8/dist-packages/ - -# add jupyter packages for UC2 on top so they don't need to be installed every time -RUN python3 -m pip install jupyterlab jupyterhub==3.1.1 batchspawner -RUN ln -s /usr/bin/python3 /usr/bin/python \ No newline at end of file