From eac69a48cf0727a8248b7de568ccf105af0eb2bc Mon Sep 17 00:00:00 2001 From: "Christopher J. Markiewicz" Date: Mon, 19 Jul 2021 11:30:37 -0400 Subject: [PATCH 1/3] MNT: Remove /root/.npm --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index f143d15e9..4a2e5074f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -99,13 +99,12 @@ RUN mkdir -p $ANTSPATH && \ | tar -xzC $ANTSPATH --strip-components 1 ENV PATH=$ANTSPATH:$PATH -# Installing SVGO +# Installing SVGO and bids-validator RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - RUN apt-get install -y nodejs -RUN npm install -g svgo - -# Installing bids-validator -RUN npm install -g bids-validator@1.4.0 +RUN npm install -g svgo && + npm install -g bids-validator@1.4.0 && + rm -rf /root/.npm # Installing and setting up ICA_AROMA RUN mkdir -p /opt/ICA-AROMA && \ From 6e52a4f2fd41c091711f18df3b1bce9b12fc15df Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Mon, 19 Jul 2021 11:59:29 -0400 Subject: [PATCH 2/3] Update Dockerfile Co-authored-by: Mathias Goncalves --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4a2e5074f..440333ac6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -102,8 +102,7 @@ ENV PATH=$ANTSPATH:$PATH # Installing SVGO and bids-validator RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - RUN apt-get install -y nodejs -RUN npm install -g svgo && - npm install -g bids-validator@1.4.0 && +RUN npm install -g svgo bids-validator@1.4.0 && rm -rf /root/.npm # Installing and setting up ICA_AROMA From c7056e862d49356f15fcbb60370a51a062aa5a7e Mon Sep 17 00:00:00 2001 From: Mathias Goncalves Date: Mon, 19 Jul 2021 14:06:46 -0400 Subject: [PATCH 3/3] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 440333ac6..869d0e97b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -102,7 +102,7 @@ ENV PATH=$ANTSPATH:$PATH # Installing SVGO and bids-validator RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - RUN apt-get install -y nodejs -RUN npm install -g svgo bids-validator@1.4.0 && +RUN npm install -g svgo bids-validator@1.4.0 && \ rm -rf /root/.npm # Installing and setting up ICA_AROMA