You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN echo "IdentityFile ~/.ssh/github_ed25519" >> /root/.ssh/config
63
+
RUN echo "" >> /root/.ssh/config
64
+
RUN echo "Host github.com" >> /root/.ssh/config
65
+
RUN echo " AddKeysToAgent yes" >> /root/.ssh/config
66
+
RUN echo " IdentityFile ~/.ssh/github_ed25519" >> /root/.ssh/config
67
+
# The following line is required or git will require yes/no answers in the prompt that
68
+
# don't work with the option (yes | <command> )
69
+
RUN echo " StrictHostKeyChecking no" >> /root/.ssh/config
42
70
43
71
RUN export LD_LIBRARY_PATH=/usr/lib/:/usr/local/lib:$LD_LIBRARY_PATH
44
72
45
-
RUN git clone https://github.com/Craigacp/MIToolbox.git
73
+
74
+
RUN git clone git@github.com:Craigacp/MIToolbox.git
46
75
RUN cd MIToolbox && make clean && make && make install
47
76
RUN cd ..
48
77
49
-
RUN git clone https://github.com/barbacbd/FEAST.git
50
-
RUN cd FEAST
51
-
RUN RUN git checkout pyfeast_v2
52
-
RUN make clean && make && make install
53
-
54
-
RUN cd python
55
-
RUN python3 -m pip install . --upgrade
56
-
78
+
RUN git clone git@github.com:barbacbd/FEAST.git
79
+
RUN cd FEAST && git fetch && git branch -v -a && git checkout remotes/origin/pyfeast_v2 && rm -rf MIToolbox && ln -s /MIToolbox .&& make clean && make && make install && cd -
0 commit comments