-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from sassy-crick/container-rebuild
Extension of existing scripts, automatic building of containers + sandboxes, reducing of number of scripts used. Complete overhaul of previous version.
- Loading branch information
Showing
18 changed files
with
845 additions
and
1,544 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Bootstrap: yum | ||
OSVersion: ${distro_version} | ||
MirrorURL: ${distro_url} | ||
Include: yum | ||
|
||
%post | ||
yum --assumeyes update | ||
yum install --quiet --assumeyes epel-release | ||
yum install --quiet --assumeyes python3 ${mod} | ||
yum install --quiet --assumeyes python3-pip | ||
yum install --quiet --assumeyes bzip2 gzip tar zip unzip xz | ||
yum install --quiet --assumeyes curl wget | ||
yum install --quiet --assumeyes patch make | ||
yum install --quiet --assumeyes file git which | ||
yum install --quiet --assumeyes gcc-c++ | ||
yum install --quiet --assumeyes perl-Data-Dumper | ||
yum install --quiet --assumeyes perl-Thread-Queue | ||
yum install --quiet --assumeyes libibverbs-devel rdma-core-devel | ||
yum install --quiet --assumeyes openssl-devel openssl | ||
yum clean all | ||
|
Oops, something went wrong.