@@ -30,8 +30,6 @@ $ sudo yum groupinstall -y 'Development Tools' && \
3030 squashfs-tools cryptsetup
3131```
3232
33- _NOTE:_ On CentOS/RHEL 6 or less, you may skip `libseccomp-devel`.
34-
3533## Install Golang
3634
3735This is one of several ways to [install and configure golang](https://golang.org/doc/install).
@@ -43,7 +41,7 @@ _**NOTE:** if you are updating Go from a older version, make sure you remove `/u
4341reinstalling it._
4442
4543```
46- $ export VERSION=1.14.12 OS=linux ARCH=amd64 # change this as you need
44+ $ export VERSION=1.15.6 OS=linux ARCH=amd64 # change this as you need
4745
4846$ wget -O /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz https://dl.google.com/go/go${VERSION}.${OS}-${ARCH}.tar.gz && \
4947 sudo tar -C /usr/local -xzf /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz
@@ -92,7 +90,7 @@ $ mkdir -p ${GOPATH}/src/github.com/sylabs && \
9290To build a stable version of Singularity, check out a [release tag](https://github.com/sylabs/singularity/tags) before compiling:
9391
9492```
95- $ git checkout v3.6.4
93+ $ git checkout v3.7.1
9694```
9795
9896## Compiling Singularity
@@ -135,7 +133,7 @@ as shown above. Then download the latest
135133and use it to install the RPM like this:
136134
137135```
138- $ export VERSION=3.6.4 # this is the singularity version, change as you need
136+ $ export VERSION=3.7.1 # this is the singularity version, change as you need
139137
140138$ wget https://github.com/sylabs/singularity/releases/download/v${VERSION}/singularity-${VERSION}.tar.gz && \
141139 rpmbuild -tb singularity-${VERSION}.tar.gz && \
@@ -151,7 +149,7 @@ tarball and use it to install Singularity:
151149$ cd $GOPATH/src/github.com/sylabs/singularity && \
152150 ./mconfig && \
153151 make -C builddir rpm && \
154- sudo rpm -ivh ~/rpmbuild/RPMS/x86_64/singularity-3.6.4 *.x86_64.rpm # or whatever version you built
152+ sudo rpm -ivh ~/rpmbuild/RPMS/x86_64/singularity-3.7.1 *.x86_64.rpm # or whatever version you built
155153```
156154
157155To build an rpm with an alternative install prefix set RPMPREFIX on the
0 commit comments