Jelajahi Sumber

feature: add apprise (#250)

James Read 2 tahun lalu
induk
melakukan
744debc00a
2 mengubah file dengan 8 tambahan dan 3 penghapusan
  1. 3 1
      Dockerfile
  2. 5 2
      Dockerfile.arm64

+ 3 - 1
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
 

+ 5 - 2
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