Skip to content

Commit 1d02c4c

Browse files
Merge pull request #26 from SteveBronder/fix/dockerfile-clone-recursive
Adds --recursive to clone in docker container
2 parents 396c3e9 + 5c15294 commit 1d02c4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ RUN pip3 install --no-cache --upgrade pip && \
1010
jupyter nbextension enable hide_code --user --py && \
1111
python3 -m cite2c.install
1212

13-
#RUN git clone https://github.com/eigenteam/eigen-git-mirror
13+
#RUN git clone https://github.com/eigenteam/eigen-git-mirror
1414
#ENV CPLUS_INCLUDE_PATH=${PWD}/eigen-git-mirror/:${CPLUS_INCLUDE_PATH}
1515
#RUN echo $CPLUS_INCLUDE_PATH
1616
RUN mkdir oscode
17-
RUN git clone --single-branch --branch master https://github.com/fruzsinaagocs/oscode oscode/
17+
RUN git clone --single-branch --recursive --branch master https://github.com/fruzsinaagocs/oscode oscode/
1818

1919
RUN cd oscode && \
2020
python3 setup.py install

0 commit comments

Comments
 (0)