2021-10-06 22:39:49 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
2024-02-18 12:52:36 +01:00
|
|
|
FROM quay.io/centos/centos:stream9-minimal
|
2021-10-06 22:39:49 +02:00
|
|
|
|
2022-07-05 14:46:20 +02:00
|
|
|
ARG MAJOR_VERSION=6.4
|
2024-01-29 12:58:57 +01:00
|
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}.11
|
2021-10-06 22:39:49 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
ENV TERM=xterm \
|
|
|
|
ZBX_VERSION=${ZBX_VERSION} \
|
2023-11-09 06:55:30 +01:00
|
|
|
PATH=/usr/local/go/bin:$PATH \
|
|
|
|
GOPROXY=direct
|
2021-10-06 22:39:49 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
|
2021-10-06 22:39:49 +02:00
|
|
|
org.opencontainers.image.description="Zabbix build base image contains all required packages to build Zabbix images" \
|
|
|
|
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.title="Zabbix build base" \
|
|
|
|
org.opencontainers.image.url="https://zabbix.com/" \
|
|
|
|
org.opencontainers.image.vendor="Zabbix LLC" \
|
|
|
|
org.opencontainers.image.version="${ZBX_VERSION}"
|
2021-10-06 22:39:49 +02:00
|
|
|
|
2024-02-18 13:52:23 +01:00
|
|
|
RUN --mount=type=tmpfs,target=/var/lib/dnf/ \
|
|
|
|
set -eux && \
|
2021-10-06 22:39:49 +02:00
|
|
|
INSTALL_PKGS="autoconf \
|
|
|
|
automake \
|
|
|
|
bash \
|
|
|
|
gcc \
|
2023-01-20 08:30:08 +01:00
|
|
|
patch \
|
2022-01-22 13:44:37 +01:00
|
|
|
pcre2-devel \
|
2021-10-06 22:39:49 +02:00
|
|
|
libcurl-devel \
|
|
|
|
libevent-devel \
|
|
|
|
libssh-devel \
|
|
|
|
libxml2-devel \
|
|
|
|
openssl-devel \
|
|
|
|
openldap-devel \
|
|
|
|
make \
|
|
|
|
mysql-devel \
|
|
|
|
net-snmp-devel \
|
|
|
|
OpenIPMI-devel \
|
|
|
|
openldap-devel \
|
|
|
|
sqlite-devel \
|
|
|
|
postgresql-devel \
|
2023-09-20 11:13:10 +02:00
|
|
|
java-17-openjdk-devel \
|
2021-10-06 22:39:49 +02:00
|
|
|
git \
|
|
|
|
gettext \
|
2022-05-10 18:25:07 +02:00
|
|
|
go-toolset \
|
2021-10-06 22:39:49 +02:00
|
|
|
unixODBC-devel" && \
|
2024-02-18 12:52:36 +01:00
|
|
|
microdnf -y install \
|
2021-10-16 17:49:19 +02:00
|
|
|
--disablerepo "*" \
|
2024-02-18 12:52:36 +01:00
|
|
|
--enablerepo "extras-common" \
|
|
|
|
--setopt=install_weak_deps=0 \
|
|
|
|
--setopt=keepcache=0 \
|
2021-10-16 17:49:19 +02:00
|
|
|
--best \
|
2024-02-18 12:52:36 +01:00
|
|
|
--nodocs epel-release && \
|
|
|
|
microdnf -y install \
|
|
|
|
--disablerepo "*" \
|
|
|
|
--enablerepo "baseos" \
|
|
|
|
--enablerepo "appstream" \
|
|
|
|
--enablerepo "crb" \
|
|
|
|
--enablerepo="epel" \
|
|
|
|
--setopt=install_weak_deps=0 \
|
|
|
|
--setopt=keepcache=0 \
|
|
|
|
--best \
|
|
|
|
--nodocs ${INSTALL_PKGS} && \
|
|
|
|
microdnf -y clean all && \
|
2021-10-12 15:56:07 +02:00
|
|
|
rm -rf /var/cache/yum /var/lib/yum/yumdb/* /usr/lib/udev/hwdb.d/* && \
|
|
|
|
rm -rf /var/cache/dnf /etc/udev/hwdb.bin /root/.pki
|
2024-02-18 13:52:23 +01:00
|
|
|
dnf -y clean all
|