zabbix-docker/Dockerfiles/build-base/rhel/Dockerfile

83 lines
2.8 KiB
Docker
Raw Normal View History

# syntax=docker/dockerfile:1
2024-05-30 10:00:59 +02:00
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10
ARG MAJOR_VERSION=6.0
2024-07-15 12:50:48 +02:00
ARG RELEASE=32
ARG ZBX_VERSION=${MAJOR_VERSION}.32
2021-10-16 17:49:19 +02:00
ENV TERM=xterm \
ZBX_VERSION=${ZBX_VERSION} \
PATH=/usr/local/go/bin:$PATH
2021-10-16 17:49:19 +02:00
LABEL description="Prepared environment to build Zabbix components" \
maintainer="alexey.pustovalov@zabbix.com" \
2022-02-15 11:11:35 +01:00
name="zabbix/zabbix-build-base-60" \
release="${RELEASE}" \
summary="Zabbix build base" \
url="https://www.zabbix.com/" \
vendor="Zabbix SIA" \
2021-10-16 17:49:19 +02:00
version="${MAJOR_VERSION}" \
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" \
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}" \
org.label-schema.vendor="Zabbix SIA"
COPY ["licenses", "/licenses"]
RUN --mount=type=tmpfs,target=/var/lib/dnf/ \
2024-05-30 11:13:32 +02:00
--mount=type=bind,target=/run/secrets/,src=secrets/ \
set -eux && \
INSTALL_PKGS="autoconf \
automake \
bash \
gcc \
go-toolset \
patch \
2022-01-22 13:44:37 +01:00
pcre2-devel \
libcurl-devel \
libevent-devel \
libssh-devel \
libmodbus-devel \
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 \
git \
gettext \
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 && \
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 && \
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" \
--enablerepo "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 \
--setopt=tsflags=nodocs \
${INSTALL_PKGS} && \
microdnf -y clean all