From 06a97f05223bc1ab51d4885ba12b2e799c27bd11 Mon Sep 17 00:00:00 2001 From: Leonardo Cristella Date: Mon, 25 Nov 2024 22:51:09 +0100 Subject: [PATCH] keep order in Dockerfile --- Dockerfile | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8457911..84b27d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,6 +34,17 @@ RUN pip install "blue-brain-token-fetch>=1.0.0" # module load py-bba-datafetch RUN pip install git+https://github.com/BlueBrain/bbp-atlas-data-fetch.git@v0.3.0 +ARG CI_JOB_TOKEN +RUN git config --global --add url."https://gitlab-ci-token:${CI_JOB_TOKEN}@bbpgitlab.epfl.ch/".insteadOf https://bbpgitlab.epfl.ch/ + +# densities validation +RUN pip install -i https://bbpteam.epfl.ch/repository/devpi/simple/ "densities-validation>=0.1.1" + +# leaves-only +RUN pip install -i https://bbpteam.epfl.ch/repository/devpi/simple/ "cell-densities>=0.2.1" + +RUN git config --global --remove-section url."https://gitlab-ci-token:${CI_JOB_TOKEN}@bbpgitlab.epfl.ch/" + # module load py-bba-webexporter RUN pip install git+https://github.com/BlueBrain/bbp-atlas-web-exporter.git@v3.0.0 @@ -55,15 +66,3 @@ RUN pip install "atlas-placement-hints>=0.1.4" RUN pip install "atlas-densities>=0.2.5" RUN pip install "snakemake==7.32.3" - - -ARG CI_JOB_TOKEN -RUN git config --global --add url."https://gitlab-ci-token:${CI_JOB_TOKEN}@bbpgitlab.epfl.ch/".insteadOf https://bbpgitlab.epfl.ch/ - -# densities validation -RUN pip install -i https://bbpteam.epfl.ch/repository/devpi/simple/ "densities-validation>=0.1.1" - -# leaves-only -RUN pip install -i https://bbpteam.epfl.ch/repository/devpi/simple/ "cell-densities>=0.2.1" - -RUN git config --global --remove-section url."https://gitlab-ci-token:${CI_JOB_TOKEN}@bbpgitlab.epfl.ch/"