Skip to content

Commit

Permalink
replace curl with git
Browse files Browse the repository at this point in the history
Curl link was broken. replaced with git clone
  • Loading branch information
bayesfactor authored Apr 4, 2019
1 parent f87e9e5 commit 46c11dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nwchem-68.small/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ENV NWCHEM_TOP=$MYHOME/nwchem-6.8
RUN sed -i 's|archive.ubuntu.com|mirrors.us.kernel.org|' /etc/apt/sources.list \
&& apt -qq update \
&& apt -qq -y upgrade \
&& apt-get install -y python-dev gfortran libopenmpi-dev openmpi-bin make curl subversion unzip cmake perl tcsh ssh bzip2 tar patch libopenblas-dev \
&& apt-get install -y python-dev gfortran libopenmpi-dev openmpi-bin make git subversion unzip cmake perl tcsh ssh bzip2 tar patch libopenblas-dev \
&& apt-get clean \
&& useradd -c 'NWChem user' -m -d $MYHOME -s /bin/bash nwchem
USER nwchem
Expand All @@ -33,7 +33,7 @@ env PYTHONVERSION=2.7
#ENV USE_MPIF4=y
#ENV MRCC_METHODS=y

RUN curl -SL http://www.nwchem-sw.org/images/Nwchem-6.8.revision29612-srconly.2017-11-07.tar.bz2 | tar -jxf - \
RUN cd $MYHOME; git clone -b release-6-8 https://github.com/nwchemgit/nwchem.git nwchem-6.8 \
&& cd nwchem-6.8/src \
&& ls -lrt \
&& make clean && make nwchem_config && make 64_to_32;make -j3
Expand Down

0 comments on commit 46c11dd

Please sign in to comment.