We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8ce36d commit bcabb15Copy full SHA for bcabb15
Dockerfile
@@ -1,5 +1,15 @@
1
FROM docker.io/fcpindi/c-pac:release-v1.3.0
2
-LABEL org.opencontainers.image.authors="The C-PAC Team <[email protected]>"
+LABEL org.opencontainers.image.authors="The C-PAC Team <[email protected]>" \
3
+ org.opencontainers.image.version="1.3.0.post2"
4
+ARG BIDS_VALIDATOR_VERSION="1.2.3"
5
+
6
+# Install the validator
7
+RUN apt-get update && \
8
+ apt-get install -y curl && \
9
+ curl -sL https://deb.nodesource.com/setup_8.x | bash - && \
10
+ apt-get install -y nodejs && \
11
+ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
12
+ npm install -g "bids-validator@${BIDS_VALIDATOR_VERSION}"
13
14
# install cpac
15
COPY . /code
0 commit comments