summaryrefslogtreecommitdiffstats
path: root/bin/smt
blob: 40078a99a4c572599d5fe5d9f962ac6a44a49001 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -eu

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 "$@"