summaryrefslogtreecommitdiffstats
path: root/bin/smt
diff options
context:
space:
mode:
Diffstat (limited to 'bin/smt')
-rwxr-xr-xbin/smt6
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/smt b/bin/smt
index d7ac305..40078a9 100755
--- a/bin/smt
+++ b/bin/smt
@@ -1,5 +1,9 @@
#!/bin/sh
set -eu
-podman images | grep -q localhost/smt || podman build -t smt -f ~/conf/docker/smt
+podman images | grep -q localhost/smt || cat <<EOF | podman build -t smt -f -
+FROM docker.io/debian:stable
+RUN apt-get update && apt-get install -y cpanminus make
+RUN cpanm Games::SMTNocturne::Demons
+EOF
podman run --rm smt smt "$@"