summaryrefslogblamecommitdiffstats
path: root/bin/smt
blob: ad3f45920d15c46b607af1d8dae5dd10edca6550 (plain) (tree)
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/alpine:latest
RUN apk add perl make
RUN env PERL_MM_USE_DEFAULT=1 perl -MCPAN -e'install Games::SMTNocturne::Demons'
EOF
podman run --rm smt smt "$@"