From 80126c4bd9bc33730a7d3f133a31e4640266524b Mon Sep 17 00:00:00 2001 From: Leonardo Cristella Date: Tue, 26 Nov 2024 10:32:16 +0100 Subject: [PATCH] RUN pwd and ls --- Dockerfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 219b085..2483e4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,10 +11,14 @@ RUN apt-get update && \ libopenscenegraph-dev RUN apt-get -y install pip git vim - +RUN pwd +RUN ls WORKDIR /pipeline - +RUN pwd +RUN ls COPY .. . +RUN pwd +RUN ls # Regiodesics #RUN git clone https://bbpgitlab.epfl.ch/nse/archive/regiodesics && \ @@ -24,7 +28,7 @@ COPY .. . # export PATH=$PATH:$PWD/build/bin # Install the pipeline repository (along with the bbp-atlas CLI) -RUN pip install -r requirements.txt +RUN pip install . # Install dependencies