summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-06-20 03:04:55 -0400
committerJesse Luehrs <doy@tozt.net>2021-06-20 03:04:55 -0400
commit1dc1c1ce5bf2d54b42e20d6d62fb905c12ec5dec (patch)
tree7d69d082a2d6bfbf97aa6d1629d33e8d8d75512c
parentee7fac8aaf86bf3917f0eeb665ae598e017e8862 (diff)
downloadconf-1dc1c1ce5bf2d54b42e20d6d62fb905c12ec5dec.tar.gz
conf-1dc1c1ce5bf2d54b42e20d6d62fb905c12ec5dec.zip
also add a podman wrapper for reply
-rwxr-xr-xbin/reply9
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/reply b/bin/reply
new file mode 100755
index 0000000..fb64c02
--- /dev/null
+++ b/bin/reply
@@ -0,0 +1,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 "$@"