Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Sep 7, 2023
1 parent c763e7e commit 64b932a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:bionic-20200921
FROM ubuntu:bionic-20200921

# setup installation
# setup installation
RUN apt-get update && \
apt-get install -y --no-install-recommends \
curl ca-certificates && \
Expand All @@ -19,11 +19,12 @@ RUN apt-get update && \
datalad nodejs python3 python3-pip python3-setuptools && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# get the validator
# get the validator
RUN npm install -g yarn && \
npm install -g bids-validator

COPY . /src/CuBIDS
RUN pip3 install --no-cache-dir "/src/CuBIDS"
RUN ls /src/CuBIDS/ && \
pip3 install --no-cache-dir "/src/CuBIDS"

ENTRYPOINT [ "/bin/bash"]

0 comments on commit 64b932a

Please sign in to comment.