hassio-zabbix-agent2/Dockerfile.amd64

13 lines
222 B
Docker
Raw Normal View History

ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:12.0.0
2021-09-14 13:54:13 +00:00
FROM $BUILD_FROM
ENV LANG C.UTF-8
# Copy scripts for add-on
COPY run.sh /
RUN apk add -U jq zabbix-agent2=6.0.5-r0 sudo && \
2021-09-14 13:54:13 +00:00
chmod a+x /run.sh
CMD [ "/run.sh" ]