From 744debc00abd8a78cf65e66026f3220c67be4eb0 Mon Sep 17 00:00:00 2001 From: James Read Date: Fri, 22 Mar 2024 19:00:30 +0000 Subject: [PATCH] feature: add apprise (#250) --- Dockerfile | 4 +++- Dockerfile.arm64 | 7 +++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 43e668f..4d8f008 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,12 @@ LABEL org.opencontainers.image.source https://github.com/OliveTin/OliveTin LABEL org.opencontainers.image.title=OliveTin RUN mkdir -p /config /config/entities/ /var/www/olivetin \ - && microdnf install -y --nodocs --noplugins --setopt=keepcache=0 --setopt=install_weak_deps=0 \ + && \ + microdnf install -y --nodocs --noplugins --setopt=keepcache=0 --setopt=install_weak_deps=0 \ iputils \ openssh-clients \ shadow-utils \ + apprise \ docker \ && microdnf clean all diff --git a/Dockerfile.arm64 b/Dockerfile.arm64 index e5c354e..338347a 100644 --- a/Dockerfile.arm64 +++ b/Dockerfile.arm64 @@ -3,12 +3,15 @@ FROM --platform=linux/arm64 registry.fedoraproject.org/fedora-minimal:38-aarch64 LABEL org.opencontainers.image.source https://github.com/OliveTin/OliveTin LABEL org.opencontainers.image.title=OliveTin -RUN mkdir -p /config /config/entities /var/www/olivetin \ +RUN mkdir -p /config /config/entities/ /var/www/olivetin \ && \ microdnf install -y --nodocs --noplugins --setopt=keepcache=0 --setopt=install_weak_deps=0 \ iputils \ + openssh-clients \ shadow-utils \ - openssh-clients + apprise \ + docker + && microdnf clean all RUN useradd --system --create-home olivetin -u 1000