summaryrefslogtreecommitdiffstats
path: root/bin/smt
blob: 59696ef79689e84fcca315b2d8ff8f2eecf5a281 (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-slim
RUN apt-get update && apt-get install -y cpanminus make
RUN cpanm Games::SMTNocturne::Demons
EOF
podman run --rm smt smt "$@"