Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Hall AC Containers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
containers
Hall AC Containers
Merge requests
!1
Update and modernize container
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update and modernize container
modernize
into
master
Overview
0
Commits
10
Pipelines
0
Changes
74
Merged
Sylvester Joosten
requested to merge
modernize
into
master
4 years ago
Overview
0
Commits
10
Pipelines
0
Changes
74
Expand
0
0
Merge request reports
Compare
master
version 9
fad72c34
4 years ago
version 8
5fe2aa9d
4 years ago
version 7
37d2f199
4 years ago
version 6
d3e2ef47
4 years ago
version 5
4c0f5b8d
4 years ago
version 4
d29a607d
4 years ago
version 3
14f932a6
4 years ago
version 2
486735d0
4 years ago
version 1
bf49a015
4 years ago
master (base)
and
latest version
latest version
fd45e6be
10 commits,
4 years ago
version 9
fad72c34
9 commits,
4 years ago
version 8
5fe2aa9d
8 commits,
4 years ago
version 7
37d2f199
7 commits,
4 years ago
version 6
d3e2ef47
6 commits,
4 years ago
version 5
4c0f5b8d
5 commits,
4 years ago
version 4
d29a607d
4 commits,
4 years ago
version 3
14f932a6
3 commits,
4 years ago
version 2
486735d0
2 commits,
4 years ago
version 1
bf49a015
1 commit,
4 years ago
74 files
+
4719
−
934
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
74
Search (e.g. *.vue) (Ctrl+P)
.gitlabci/setup.sh deleted
100644 → 0
+
0
−
36
Options
#!/bin/bash
apt-get update
&&
apt-get
install
-y
wget git
\
build-essential
\
squashfs-tools
\
libtool
\
autotools-dev
\
libarchive-dev
\
automake
\
autoconf
\
uuid-dev
\
libssl-dev
\
python-pip
## Somehow sed cant find /etc/sudoers
#sed -i -e 's/^Defaults\tsecure_path.*$//' /etc/sudoers
# Check Python
echo
"Python Version:"
python
--version
pip
install
sregistry[all]
sregistry version
echo
"sregistry Version:"
# Install Singularity
cd
/tmp
&&
\
rm
-rf
singularity
&&
\
git clone
-b
vault/release-2.5 https://www.github.com/sylabs/singularity.git
cd
singularity
&&
\
./autogen.sh
&&
\
./configure
--prefix
=
/usr/local
&&
\
make
-j8
&&
make
install
Loading