2021-10-15 21:55:46 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
2024-05-30 10:00:59 +02:00
|
|
|
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10
|
2021-10-15 21:55:46 +02:00
|
|
|
|
|
|
|
ARG MAJOR_VERSION=6.0
|
2024-07-15 12:50:48 +02:00
|
|
|
ARG RELEASE=32
|
|
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}.32
|
2021-10-15 21:55:46 +02:00
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
ENV TERM=xterm \
|
|
|
|
ZBX_VERSION=${ZBX_VERSION} \
|
2021-10-15 21:55:46 +02:00
|
|
|
PATH=/usr/local/go/bin:$PATH
|
|
|
|
|
2021-10-16 17:49:19 +02:00
|
|
|
LABEL description="Prepared environment to build Zabbix components" \
|
2021-10-15 21:55:46 +02:00
|
|
|
maintainer="alexey.pustovalov@zabbix.com" \
|
2022-02-15 11:11:35 +01:00
|
|
|
name="zabbix/zabbix-build-base-60" \
|
2021-10-15 21:55:46 +02:00
|
|
|
release="${RELEASE}" \
|
|
|
|
summary="Zabbix build base" \
|
|
|
|
url="https://www.zabbix.com/" \
|
2024-05-21 12:45:53 +02:00
|
|
|
vendor="Zabbix SIA" \
|
2021-10-16 17:49:19 +02:00
|
|
|
version="${MAJOR_VERSION}" \
|
2021-10-15 21:55:46 +02:00
|
|
|
io.k8s.description="Prepared environment to build Zabbix components" \
|
|
|
|
io.k8s.display-name="Zabbix build base" \
|
|
|
|
io.openshift.expose-services="" \
|
|
|
|
io.openshift.tags="zabbix,build" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.label-schema.description="Prepared environment to build Zabbix components" \
|
2021-10-15 21:55:46 +02:00
|
|
|
org.label-schema.name="zabbix-build-base-rhel" \
|
|
|
|
org.label-schema.url="https://zabbix.com/" \
|
2021-10-16 17:49:19 +02:00
|
|
|
org.label-schema.vcs-ref="${VCS_REF}" \
|
2024-05-21 12:45:53 +02:00
|
|
|
org.label-schema.vendor="Zabbix SIA"
|
2021-10-15 21:55:46 +02:00
|
|
|
|
|
|
|
COPY ["licenses", "/licenses"]
|
|
|
|
|
2024-02-18 13:52:23 +01:00
|
|
|
RUN --mount=type=tmpfs,target=/var/lib/dnf/ \
|
2024-05-30 11:13:32 +02:00
|
|
|
--mount=type=bind,target=/run/secrets/,src=secrets/ \
|
2024-02-18 13:52:23 +01:00
|
|
|
set -eux && \
|
2021-10-15 21:55:46 +02:00
|
|
|
INSTALL_PKGS="autoconf \
|
|
|
|
automake \
|
|
|
|
bash \
|
|
|
|
gcc \
|
2022-07-05 14:33:38 +02:00
|
|
|
go-toolset \
|
2023-01-20 08:30:08 +01:00
|
|
|
patch \
|
2022-01-22 13:44:37 +01:00
|
|
|
pcre2-devel \
|
2021-10-15 21:55:46 +02:00
|
|
|
libcurl-devel \
|
|
|
|
libevent-devel \
|
|
|
|
libssh-devel \
|
2024-02-26 06:19:58 +01:00
|
|
|
libmodbus-devel \
|
2021-10-15 21:55:46 +02:00
|
|
|
libxml2-devel \
|
|
|
|
openssl-devel \
|
|
|
|
openldap-devel \
|
|
|
|
make \
|
|
|
|
mysql-devel \
|
|
|
|
net-snmp-devel \
|
|
|
|
OpenIPMI-devel \
|
|
|
|
openldap-devel \
|
|
|
|
sqlite-devel \
|
2023-09-20 11:13:10 +02:00
|
|
|
java-17-openjdk-devel \
|
2021-10-15 21:55:46 +02:00
|
|
|
git \
|
|
|
|
gettext \
|
2024-03-24 14:42:53 +01:00
|
|
|
unixODBC-devel \
|
|
|
|
zlib-devel" && \
|
2024-03-24 12:15:18 +01:00
|
|
|
curl --tlsv1.2 -sSf -L https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -o /tmp/epel-release-latest-8.noarch.rpm && \
|
2024-02-26 06:19:58 +01:00
|
|
|
rpm -ivh /tmp/epel-release-latest-8.noarch.rpm && \
|
|
|
|
rm -rf /tmp/epel-release-latest-8.noarch.rpm && \
|
2024-05-10 12:24:20 +02:00
|
|
|
microdnf -y module enable \
|
|
|
|
--disablerepo "*" \
|
2024-05-29 13:08:58 +02:00
|
|
|
--enablerepo "rhel-8-for-x86_64-appstream-rpms" \
|
2024-05-10 12:24:20 +02:00
|
|
|
--setopt=install_weak_deps=0 \
|
|
|
|
--setopt=keepcache=0 \
|
2024-05-29 13:08:58 +02:00
|
|
|
mysql && \
|
2021-10-15 21:55:46 +02:00
|
|
|
microdnf -y install \
|
2021-10-16 17:49:19 +02:00
|
|
|
--disablerepo "*" \
|
2022-12-05 08:03:38 +01:00
|
|
|
--enablerepo "ubi-8-baseos-rpms" \
|
|
|
|
--enablerepo "ubi-8-appstream-rpms" \
|
2021-10-16 17:49:19 +02:00
|
|
|
--enablerepo "rhel-8-for-x86_64-baseos-rpms" \
|
|
|
|
--enablerepo "rhel-8-for-x86_64-appstream-rpms" \
|
|
|
|
--enablerepo "codeready-builder-for-rhel-8-x86_64-rpms" \
|
2024-02-26 06:19:58 +01:00
|
|
|
--enablerepo "epel" \
|
2021-10-16 17:49:19 +02:00
|
|
|
--setopt=install_weak_deps=0 \
|
2024-02-18 13:52:23 +01:00
|
|
|
--setopt=keepcache=0 \
|
2021-10-16 17:49:19 +02:00
|
|
|
--best \
|
|
|
|
--setopt=tsflags=nodocs \
|
2021-10-15 21:55:46 +02:00
|
|
|
${INSTALL_PKGS} && \
|
2024-02-18 13:52:23 +01:00
|
|
|
microdnf -y clean all
|