From 1c74296947ddf290c8c6227f559e4c36bd3416e3 Mon Sep 17 00:00:00 2001 From: Webber Date: Fri, 21 May 2021 20:54:24 +0200 Subject: [PATCH] Add libnotify4 and bin for notify-send --- dist/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dist/Dockerfile b/dist/Dockerfile index 85da52f6..0a93cb88 100644 --- a/dist/Dockerfile +++ b/dist/Dockerfile @@ -17,4 +17,10 @@ ADD entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh RUN ls +RUN apt-get -q update \ + && apt-get -q install -y --no-install-recommends --allow-downgrades \ + libnotify4 \ + libnotify-bin \ + && apt-get clean + ENTRYPOINT ["/entrypoint.sh"]