Skip to content

Commit

Permalink
+apptainer.def
Browse files Browse the repository at this point in the history
  • Loading branch information
csparker247 committed Nov 4, 2024
1 parent 08e5c9a commit 36936f2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions apptainer.def
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Bootstrap: docker
From: ghcr.io/educelab/volume-cartographer:latest

%labels
MAINTAINER Seth Parker <c.seth.parker@uky.edu>
OS Debian 12

%post -c /bin/bash
# Basic installs
apt update
DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \
gdb \
nano \
vi

%runscript
#!/bin/bash
if [ $# -lt 1 ]; then
echo "Usage: ./container <command>"
exit 1
fi

exec "$@"

0 comments on commit 36936f2

Please sign in to comment.