hassio-zabbix-agent2/Dockerfile.amd64
Paolo Asperti 27a52b53e4
All checks were successful
continuous-integration/drone/push Build is passing
separated amd64 arch and updated base image
2022-06-13 00:07:32 +02:00

13 lines
222 B
Docker

ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:12.0.0
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 && \
chmod a+x /run.sh
CMD [ "/run.sh" ]