Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python updates #121

Merged
merged 2 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nwchem-cross/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ arch_123=$(echo $arch |cut -c 1-3); if [[ "$arch" == "i686" ]] || [[ "$arch" ==
#one single ugly command to reduce docker size
tries=0 ; until [ "$tries" -ge 10 ] ; do \
xx-apt install -y g++ gfortran libssl-dev \
&& apt-get -q=2 install -y --no-install-recommends rsync make curl unzip cmake git file wget tar bzip2 bc ca-certificates patch pkg-config python3-dev openssh-client \
&& apt-get -q=2 install -y --no-install-recommends rsync make curl unzip cmake git file wget tar bzip2 bc ca-certificates patch pkg-config python3-dev openssh-client python-is-python3 \
&& break; \
tries=$((tries+1)) ; echo attempt no. $tries ; sleep 30 ; done \
&& echo FCFCFC is ${FC} \
Expand Down
2 changes: 1 addition & 1 deletion nwchem-dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ arch_123=$(uname -m|cut -c 1-3); if [[ "$arch" == "i686" ]] || [[ "$arch" == "i3
tries=0 ; until [ "$tries" -ge 10 ] ; do \
apt-get -q=2 update \
&& apt-get -q=2 -y upgrade \
&& apt-get -q=2 install -y --no-install-recommends rsync python3-dev g++ gfortran libopenmpi-dev openmpi-bin make unzip cmake git file wget curl tar bzip2 bc ca-certificates patch pkg-config libssl-dev \
&& apt-get -q=2 install -y --no-install-recommends rsync python3-dev g++ gfortran libopenmpi-dev openmpi-bin make unzip cmake git file wget curl tar bzip2 bc ca-certificates patch pkg-config libssl-dev python-is-python3 \
&& break; \
tries=$((tries+1)) ; echo attempt no. $tries ; sleep 30 ; done \
&& export PYTHONVERSION=$(python -V| cut -d ' ' -f 2 |cut -d . -f 1-2) \
Expand Down
Loading