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

This commit is contained in:
2021-09-14 15:54:13 +02:00
commit 5b3ad999a4
7 changed files with 289 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-agent2=5.0.14-r1 sudo && \
chmod a+x /run.sh
CMD [ "/run.sh" ]