hassio-zabbix-agent2/Dockerfile
Paolo Asperti 5b3ad999a4
All checks were successful
continuous-integration/drone/push Build is passing
initial import
2021-09-14 15:54:13 +02:00

13 lines
207 B
Docker

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" ]