From e57c2c440854051c84c99222090fb0b0dc579db0 Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Wed, 25 Jan 2023 16:43:51 +0100 Subject: [PATCH] docker: pip install apprise; 1.09GB -> 1.11GB --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b201581..69af099 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] ARG DEBIAN_FRONTEND=noninteractive ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD true -# Install up-to-date node & npm, deps for virtual screen & noVNC, browser. +# Install up-to-date node & npm, deps for virtual screen & noVNC, browser, pip for apprise. # Playwright needs --with-deps for firefox. RUN apt-get update \ && apt-get install -y curl \ @@ -22,6 +22,7 @@ RUN apt-get update \ tini \ novnc websockify \ dos2unix \ + python3-pip \ && npx playwright install --with-deps firefox \ && apt-get clean \ && rm -rf \ @@ -32,6 +33,7 @@ RUN apt-get update \ /var/tmp/* RUN ln -s /usr/share/novnc/vnc_auto.html /usr/share/novnc/index.html +RUN pip install apprise WORKDIR /fgc COPY package*.json ./