Skip to content

Commit

Permalink
quiet wget
Browse files Browse the repository at this point in the history
  • Loading branch information
edoapra committed Nov 2, 2022
1 parent 4862e0d commit 77932d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nwchem-dev.mpipr.nersc.mpich4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ RUN apt-get update \
&& echo "VERSIONGT9 is " $VERSIONGT9 \
&& echo "FFLAGS_IN is " $FFLAGS_IN \
&& echo "FFLAGS_IN is " $FFLAGS_IN >& nvcc.out && cat nvcc.out && rm nvcc.out \
&& wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-keyring_1.0-1_all.deb \
&& wget --progress=dot:giga https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-keyring_1.0-1_all.deb \
&& dpkg -i cuda-keyring_1.0-1_all.deb \
&& apt-get update \
&& apt-get -y install cuda-nvcc-"$CUDA_VERSION_MAJOR"-"$CUDA_VERSION_MINOR" cuda-cudart-dev-"$CUDA_VERSION_MAJOR"-"$CUDA_VERSION_MINOR" \
Expand All @@ -96,7 +96,7 @@ RUN apt-get update \
&& echo 'checking cache #2 ' \
&& if [[ -f /tmp/mpich.tar.bz2 ]]; then cd /usr/local ; tar xjf /tmp/mpich.tar.bz2; rm -rf /tmp/mpich.tar.bz2 ; \
else echo 'downloading mpich source' ; \
wget https://www.mpich.org/static/downloads/$mpich/$mpich_prefix.tar.gz -O - | tar xzf - ; \
wget --progress=dot:giga https://www.mpich.org/static/downloads/$mpich/$mpich_prefix.tar.gz -O - | tar xzf - ; \
cd $mpich_prefix || { echo "Failure"; exit 1; } ;\
FFLAGS=$FFLAGS_IN ./configure ; \
echo 'redirecting output to make.log' ; \
Expand Down
3 changes: 2 additions & 1 deletion nwchem-dev.mpipr.nersc_old/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

#based on earlier work by Vladimir Konjkov <[email protected]>
#
# Create the image with the command
Expand Down Expand Up @@ -57,7 +58,7 @@ RUN apt-get update \
&& apt-get -y upgrade \
&& apt-get install -y g++ gfortran make ssh patch curl wget unzip perl git file python3 python3-dev \
&& apt-get clean \
&& wget https://www.mpich.org/static/downloads/$mpich/$mpich_prefix.tar.gz && \
&& wget --progress=dot:giga https://www.mpich.org/static/downloads/$mpich/$mpich_prefix.tar.gz && \
tar xvzf $mpich_prefix.tar.gz && \
cd $mpich_prefix && \
FFLAGS=-fallow-argument-mismatch ./configure && \
Expand Down

0 comments on commit 77932d3

Please sign in to comment.