Skip to content

Commit 36936f2

Browse files
committed
+apptainer.def
1 parent 08e5c9a commit 36936f2

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

apptainer.def

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Bootstrap: docker
2+
From: ghcr.io/educelab/volume-cartographer:latest
3+
4+
%labels
5+
MAINTAINER Seth Parker <c.seth.parker@uky.edu>
6+
OS Debian 12
7+
8+
%post -c /bin/bash
9+
# Basic installs
10+
apt update
11+
DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \
12+
gdb \
13+
nano \
14+
vi
15+
16+
%runscript
17+
#!/bin/bash
18+
if [ $# -lt 1 ]; then
19+
echo "Usage: ./container <command>"
20+
exit 1
21+
fi
22+
23+
exec "$@"

0 commit comments

Comments
 (0)