Skip to content
Snippets Groups Projects
Commit bf89ebf5 authored by Marty Kandes's avatar Marty Kandes
Browse files

Increase singularity_version to v3.5.3; install debootstrap

Increased the default singularity_version installed by the
naked-singularity helper script to v3.5.3 due to this issue with
specifying a SHELL to use in %post:

https://github.com/hpcng/singularity/issues/4967

Also included the installation of debootstrap to support the building of
base Ubuntu Singularituy containers.
parent c93b9dc1
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@
#
# LAST UPDATED
#
# Thursday, December 31st, 2020
# Tuesday, February 23rd, 2021
#
# ----------------------------------------------------------------------
......@@ -45,7 +45,7 @@ source log.sh
naked::install() {
local singularity_version='3.5.2'
local singularity_version='3.5.3'
local go_version='1.15.6'
local -i use_rpm=1
......@@ -133,6 +133,7 @@ naked::install() {
sudo yum -y install wget
sudo yum -y install squashfs-tools
sudo yum -y install cryptsetup
sudo yum -y install debootstrap
elif [[ "${os_release_id}" = 'ubuntu' ]]; then
......@@ -150,6 +151,7 @@ naked::install() {
sudo apt-get -y install pkg-config
sudo apt-get -y install git
sudo apt-get -y install cryptsetup-bin
sudo apt-get -y install debootstrap
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment