Skip to content

Commit

Permalink
feature: add apprise (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesread committed Mar 22, 2024
1 parent 77321c1 commit 744debc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 5 additions & 2 deletions Dockerfile.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 744debc

Please sign in to comment.