initial import
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-09-14 16:00:14 +02:00
commit 66b7565258
8 changed files with 294 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
ARG BUILD_FROM=hassioaddons/base:8.0.6
FROM $BUILD_FROM
ENV LANG C.UTF-8
# Copy scripts for add-on
COPY run.sh /
RUN apk add -U jq zabbix-agent sudo && \
chmod a+x /run.sh
CMD [ "/run.sh" ]