hassio-zabbix-agent2/Dockerfile.arm

17 lines
460 B
Docker
Raw Permalink Normal View History

2024-07-31 09:21:43 +00:00
ARG BUILD_FROM=ghcr.io/hassio-addons/base/armhf:16.2.0
2022-06-12 22:23:25 +00:00
FROM $BUILD_FROM
ENV LANG C.UTF-8
2022-06-13 07:14:07 +00:00
COPY rootfs /
2022-06-12 22:23:25 +00:00
2023-07-26 08:03:52 +00:00
RUN \
2024-07-31 09:21:43 +00:00
apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community zabbix-agent2=7.0.2-r0 zabbix-agent2-plugin-postgresql zabbix-agent2-plugin-alpine && \
apk add --no-cache sudo && \
2023-07-26 08:03:52 +00:00
addgroup -g 102 -S docker && \
addgroup zabbix docker
2022-06-13 07:52:24 +00:00
LABEL \
2024-07-31 09:21:43 +00:00
io.hass.version="0.3.0" \
2022-06-13 07:52:24 +00:00
io.hass.type="addon" \
io.hass.arch="armhf"