Skip to content

Commit

Permalink
TVB-2592 Fix Zenodo installation of tvb-data
Browse files Browse the repository at this point in the history
  • Loading branch information
liadomide committed Feb 26, 2020
1 parent 61aed46 commit 4b8767a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tvb_build/docker/Dockerfile-build
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN /bin/bash -c "source activate tvb-run"; \

WORKDIR /root

RUN wget https://zenodo.org/record/3688773/files/tvb-data.zip?download=1 -O tvb_data.zip;
RUN wget https://zenodo.org/record/3688773/files/tvb-data.zip?download=1 -O tvb_data.zip; \
mkdir tvb_data; unzip tvb_data.zip -d tvb_data; rm tvb_data.zip; \
cd tvb_data; \
/opt/conda/envs/tvb-run/bin/python setup.py develop;\
Expand Down
2 changes: 1 addition & 1 deletion tvb_build/docker/Dockerfile-run
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN /bin/bash -c "source activate tvb-run"; \

WORKDIR /root

RUN wget https://zenodo.org/record/3688773/files/tvb-data.zip?download=1 -O tvb_data.zip;
RUN wget https://zenodo.org/record/3688773/files/tvb-data.zip?download=1 -O tvb_data.zip; \
mkdir tvb_data; unzip tvb_data.zip -d tvb_data; rm tvb_data.zip; \
cd tvb_data; \
/opt/conda/envs/tvb-run/bin/python setup.py develop
Expand Down

0 comments on commit 4b8767a

Please sign in to comment.