zabbix-docker/Dockerfiles/web-service/ol/Dockerfile

79 lines
2.7 KiB
Docker
Raw Normal View History

# syntax=docker/dockerfile:1
2022-07-05 14:46:20 +02:00
ARG MAJOR_VERSION=6.4
2024-08-19 11:59:13 +02:00
ARG ZBX_VERSION=${MAJOR_VERSION}.18
ARG BUILD_BASE_IMAGE=zabbix-build-mysql:ol-${ZBX_VERSION}
2024-02-13 17:07:53 +01:00
FROM ${BUILD_BASE_IMAGE} AS builder
2023-01-31 10:12:38 +01:00
FROM oraclelinux:9-slim
ARG MAJOR_VERSION
ARG ZBX_VERSION
2021-10-16 17:49:19 +02:00
ARG ZBX_SOURCES=https://git.zabbix.com/scm/zbx/zabbix.git
2021-10-16 17:49:19 +02:00
ENV TERM=xterm \
ZBX_VERSION=${ZBX_VERSION} ZBX_SOURCES=${ZBX_SOURCES} \
PATH=/usr/lib64/chromium-browser:$PATH
2021-10-16 17:49:19 +02:00
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
2021-09-13 17:53:32 +02:00
org.opencontainers.image.description="Zabbix web service for performing various tasks using headless web browser" \
org.opencontainers.image.documentation="https://www.zabbix.com/documentation/${MAJOR_VERSION}/manual/installation/containers" \
2021-10-16 17:49:19 +02:00
org.opencontainers.image.licenses="GPL v2.0" \
org.opencontainers.image.source="${ZBX_SOURCES}" \
org.opencontainers.image.title="Zabbix web service" \
org.opencontainers.image.url="https://zabbix.com/" \
2024-05-21 12:45:53 +02:00
org.opencontainers.image.vendor="Zabbix SIA" \
2021-10-16 17:49:19 +02:00
org.opencontainers.image.version="${ZBX_VERSION}"
STOPSIGNAL SIGTERM
2024-06-01 08:10:31 +02:00
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}-output/web_service/sbin/zabbix_web_service", "/usr/sbin/zabbix_web_service"]
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}-output/web_service/conf/", "/etc/zabbix/"]
2023-01-31 10:12:38 +01:00
COPY ["conf/etc/yum.repos.d/oracle-epel-ol9.repo", "/etc/yum.repos.d/oracle-epel-ol9.repo"]
RUN --mount=type=tmpfs,target=/var/lib/dnf/ \
set -eux && \
2021-10-16 17:49:19 +02:00
INSTALL_PKGS="bash \
chromium-headless" && \
2021-10-16 17:49:19 +02:00
microdnf -y install \
--disablerepo="*" \
2023-01-31 10:12:38 +01:00
--enablerepo="ol9_baseos_latest" \
--enablerepo="ol9_appstream" \
--enablerepo="ol9_developer_EPEL" \
2021-10-16 17:49:19 +02:00
--setopt=install_weak_deps=0 \
--setopt=keepcache=0 \
2021-10-16 17:49:19 +02:00
--best \
--nodocs \
${INSTALL_PKGS} && \
groupadd \
--system \
--gid 1995 \
zabbix && \
useradd \
2021-10-16 17:49:19 +02:00
--system \
--comment "Zabbix monitoring system" \
-g zabbix \
--uid 1997 \
--shell /sbin/nologin \
--home-dir /var/lib/zabbix/ \
zabbix && \
mkdir -p /etc/zabbix && \
mkdir -p /var/lib/zabbix && \
mkdir -p /var/lib/zabbix/enc && \
chown --quiet -R zabbix:root /etc/zabbix/ /var/lib/zabbix/ && \
chgrp -R 0 /etc/zabbix/ /var/lib/zabbix/ && \
chmod -R g=u /etc/zabbix/ /var/lib/zabbix/ && \
microdnf -y clean all
EXPOSE 10053/TCP
WORKDIR /var/lib/zabbix
COPY ["docker-entrypoint.sh", "/usr/bin/"]
ENTRYPOINT ["docker-entrypoint.sh"]
USER 1997
CMD ["/usr/sbin/zabbix_web_service", "-c", "/etc/zabbix/zabbix_web_service.conf"]