Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrades to bids validator v1.7.2 (from 1.2.5) #16

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 2 additions & 16 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ MAINTAINER <[email protected]>
#heudiconv version:
ENV HEUDICONVTAG v0.5.4

#bids validator version:
ENV BIDSTAG 1.2.5

#pydeface version:
ENV PYDEFACETAG v1.1.0

Expand Down Expand Up @@ -123,20 +120,9 @@ RUN mkdir -p /opt/tar2bids
COPY . /opt/tar2bids

## Install bids-validator



RUN apt-get update && \
apt-get install -y curl git && \
curl -sL https://deb.nodesource.com/setup_8.x | bash - && \
apt-get remove -y curl && \
apt-get install -y nodejs && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN git clone https://github.com/bids-standard/bids-validator /opt/bids-validator && \
cd /opt/bids-validator && \
git checkout $BIDSTAG && \
npm install -g /opt/bids-validator/bids-validator
apt-get install -y git nodejs && apt-get install -y npm && \
npm install --global npm@^7 && npm install -g bids-validator

#install gnu parallel
RUN apt-get update && apt-get install -y parallel
Expand Down