File tree 3 files changed +14
-4
lines changed
3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Singularity Changelog
2
2
3
+ ## v3.8.4 - [ 2021-11-09]
4
+
5
+ ### Bug fixes
6
+
7
+ - Fix the oras contexts to avoid hangs upon failed pushed to Harbor registry.
8
+
9
+ ### Enhancements
10
+
11
+ - Added seccomp, cryptsetup, devscripts & correct go version test to debain packaging.
12
+
3
13
## v3.8.3 - [ 2021-09-07]
4
14
5
15
### Bug fixes
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ $ mkdir -p ${GOPATH}/src/github.com/hpcng && \
87
87
To build a stable version of Singularity, check out a [ release tag] ( https://github.com/hpcng/singularity/tags ) before compiling:
88
88
89
89
```
90
- $ git checkout v3.8.3
90
+ $ git checkout v3.8.4
91
91
```
92
92
93
93
## Compiling Singularity
@@ -130,7 +130,7 @@ as shown above. Then download the latest
130
130
and use it to install the RPM like this:
131
131
132
132
```
133
- $ export VERSION=3.8.3 # this is the singularity version, change as you need
133
+ $ export VERSION=3.8.4 # this is the singularity version, change as you need
134
134
135
135
$ wget https://github.com/hpcng/singularity/releases/download/v${VERSION}/singularity-${VERSION}.tar.gz && \
136
136
rpmbuild -tb singularity-${VERSION}.tar.gz && \
@@ -146,7 +146,7 @@ tarball and use it to install Singularity:
146
146
$ cd $GOPATH/src/github.com/hpcng/singularity && \
147
147
./mconfig && \
148
148
make -C builddir rpm && \
149
- sudo rpm -ivh ~/rpmbuild/RPMS/x86_64/singularity-3.8.3 *.x86_64.rpm # or whatever version you built
149
+ sudo rpm -ivh ~/rpmbuild/RPMS/x86_64/singularity-3.8.4 *.x86_64.rpm # or whatever version you built
150
150
```
151
151
152
152
To build an rpm with an alternative install prefix set RPMPREFIX on the
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ From: continuumio/miniconda3:latest
143
143
%post
144
144
145
145
. /opt/conda/etc/profile.d/conda.sh
146
- conda create -n env python=3
146
+ conda create -n env
147
147
148
148
%environment
149
149
You can’t perform that action at this time.
0 commit comments