-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSingularity
More file actions
30 lines (25 loc) · 1.1 KB
/
Singularity
File metadata and controls
30 lines (25 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
################################################################################
# Basic bootstrap definition to build Ubuntu container from Docker container
################################################################################
Bootstrap:docker
From:ubuntu:18.04
%labels
Maintainer Emily Dolson
Version 2.0.0
################################################################################
# Copy any necessary files into the container
################################################################################
%files
. /opt/force-cover
%post
################################################################################
# Install additional packages
################################################################################
apt-get update
apt-get install -y software-properties-common
apt install -y libclang-dev llvm-dev clang
################################################################################
# Run the user's login shell, or a user specified command
################################################################################
%runscript
echo "Nothing here but us birds!"