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

podman images | grep -q localhost/reply || cat <<EOF | podman build -t reply -f -
FROM docker.io/debian:stable-slim
RUN apt-get update && apt-get install -y cpanminus make gcc
RUN cpanm Reply
EOF
podman run --rm -it reply reply "$@"