12 lines
467 B
Bash
Executable file
12 lines
467 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e -u
|
|
|
|
apt-get update -qq
|
|
eatmydata apt-get -y install apache2
|
|
eatmydata apt-get install ca-certificates
|
|
# deploy singularity v2, matching the ICF deployment
|
|
# only download when not already cached
|
|
[ ! -f singularity-container_3.8.7_amd64.deb ] && wget https://github.com/apptainer/singularity/releases/download/v3.8.7/singularity-container_3.8.7_amd64.deb || true
|
|
eatmydata dpkg -i singularity-container_3.8.7_amd64.deb
|
|
eatmydata apt-get install -f
|