From 7e727ec773b026d1df02a0f191c22cd514aa1196 Mon Sep 17 00:00:00 2001 From: Dinindu Senanayake Date: Mon, 20 May 2024 20:14:10 +1200 Subject: [PATCH] change nextflow binary to -all --- docker/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 5cb51f2..628c3ca 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -45,8 +45,10 @@ RUN add-apt-repository -y ppa:apptainer/ppa \ && apt install -y apptainer-suid \ && rm -rf /var/lib/apt/lists/* -#install nextflow -RUN curl -s https://get.nextflow.io | bash \ +#install nextflow : Download -all from GH to workaround https://github.com/nesi/training-environment-jupyter-intronextflow-app/issues/1 +#RUN curl -s https://get.nextflow.io | bash \ +RUN wget -c https://github.com/nextflow-io/nextflow/releases/download/v23.10.1/nextflow-23.10.1-all \ + && mv nextflow-23.10.1-all nextflow \ && chmod +x nextflow \ && mv nextflow /usr/local/bin \ && chmod a+rw /usr/local/bin/nextflow