Skip to content
Snippets Groups Projects
Select Git revision
  • 45ef93d41c0d8a45ca14d6214ca1869e6a7bb663
  • master default protected
  • replication_test
  • dev protected
  • release-1.10 protected
  • release-1.9 protected
  • 551-init-broker-service-permissions
  • 549-test-oai-pmh
  • 545-saving-multiple-times-breaks-pid-metadata
  • 499-standalone-compute-service-2
  • 539-load-tests
  • hotfix/helm-chart
  • luca_ba_new_interface
  • 534-bug-when-adding-access-to-user-that-is-not-registered-at-dashboard-service
  • release-1.8 protected
  • 533-integrate-semantic-recommendation
  • feature/openshift
  • 518-spark-doesn-t-map-the-headers-correct
  • 485-fixity-checks
  • 530-various-schema-problems-with-subsets
  • release-1.7 protected
  • v1.10.2 protected
  • v1.10.1 protected
  • v1.10.0-rc13 protected
  • v1.10.0-rc12 protected
  • v1.10.0-rc11 protected
  • v1.10.0-rc10 protected
  • v1.10.0-rc9 protected
  • v1.10.0-rc8 protected
  • v1.10.0-rc7 protected
  • v1.10.0-rc6 protected
  • v1.10.0-rc5 protected
  • v1.10.0-rc4 protected
  • v1.10.0-rc3 protected
  • v1.10.0-rc2 protected
  • v1.10.0rc1 protected
  • v1.10.0rc0 protected
  • v1.10.0 protected
  • v1.9.3 protected
  • v1.9.2 protected
  • v1.9.2-rc0 protected
41 results

README.md

Blame
  • centos.def 1.59 KiB
    Bootstrap: yum 
    OSVersion: 7
    MirrorURL: http://mirror.centos.org/centos-7/7/os/x86_64/
    Include: yum
    
    %labels
    
        APPLICATION_NAME centos
        APPLICATION_VERSION 7.7.1908
        APPLICATION_URL https://www.centos.org
    
        SINGULARITY_VERSION 2.6.1
        SINGULARITY_IMAGE_SIZE 4096
    
        AUTHOR_NAME Marty Kandes
        AUTHOR_EMAIL mkandes@sdsc.edu
    
        LAST_UPDATED 20200129
    
    %setup
    
    %environment
    
        # Set system locale
        export LC_ALL=C
    
        # Set default miniconda environment
        export PATH="/opt/miniconda3/bin:${PATH}"
    
    %post -c /bin/bash
    
        # Set system locale
        export LC_ALL=C
    
        # Add repositories
        yum -y install epel-release
    
        # Install system metapackages
        yum -y groupinstall "Development Tools"
        yum -y groupinstall "Additional Development"
        yum -y groupinstall "Compatibility Libraries"
    
        # Update all packages to their latest versions
        yum -y update
    
        # Install common packages
        yum -y install bc
        yum -y install cmake
        yum -y install curl
        yum -y install mlocate
        yum -y install rsync
        yum -y install time
        yum -y install wget
        yum -y install which
    
        # Install expect to automate responses for interactive build questions
        yum -y install expect
    
        # Use /tmp to store temporary files within the container during the
        # bootstraping process
        cd /tmp
    
        # Install miniconda3
        wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
        chmod +x Miniconda3-latest-Linux-x86_64.sh
        ./Miniconda3-latest-Linux-x86_64.sh -b -p /opt/miniconda3
        
        # Update database for mlocate
        updatedb
    
    %files
    
    %runscript
    
    %test