From b37cf2742a88276541a927889eb42211cbbca6d0 Mon Sep 17 00:00:00 2001 From: astra Date: Mon, 4 Sep 2023 17:45:11 +0000 Subject: [PATCH] weechat: add Containerfile --- weechat/Containerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 weechat/Containerfile diff --git a/weechat/Containerfile b/weechat/Containerfile new file mode 100644 index 0000000..40ce149 --- /dev/null +++ b/weechat/Containerfile @@ -0,0 +1,11 @@ +FROM bitnami/minideb:bullseye + +ENV HOME=/config \ + TERM=screen-256color \ + LANG=C.UTF-8 + +RUN install_packages weechat weechat-lua weechat-perl weechat-python weechat-ruby weechat-plugins weechat-scripts + +STOPSIGNAL SIGQUIT +ENTRYPOINT ["weechat", "--dir", "/config"] +