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

77 lines
2.6 KiB
Docker
Raw Normal View History

# syntax=docker/dockerfile:1
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.3
2022-07-05 14:46:20 +02:00
ARG MAJOR_VERSION=6.4
2024-01-29 12:58:57 +01:00
ARG RELEASE=11
ARG ZBX_VERSION=${MAJOR_VERSION}.11
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" \
2023-03-07 08:49:55 +01:00
name="zabbix/zabbix-build-base-64" \
release="${RELEASE}" \
summary="Zabbix build base" \
url="https://www.zabbix.com/" \
2021-10-16 17:49:19 +02:00
vendor="Zabbix LLC" \
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 LLC"
COPY ["licenses", "/licenses"]
RUN --mount=type=tmpfs,target=/var/lib/dnf/ \
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 \
postgresql-devel \
2023-09-20 11:13:10 +02:00
java-17-openjdk-devel \
git \
gettext \
unixODBC-devel" && \
curl -sSL -o /tmp/epel-release-latest-9.noarch.rpm https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \
rpm -ivh /tmp/epel-release-latest-9.noarch.rpm && \
rm -rf /tmp/epel-release-latest-9.noarch.rpm && \
2023-04-01 18:00:37 +02:00
ARCH_SUFFIX="$(arch)"; \
microdnf -y install \
2021-10-16 17:49:19 +02:00
--disablerepo "*" \
2023-01-30 11:29:52 +01:00
--enablerepo "ubi-9-baseos-rpms" \
--enablerepo "ubi-9-appstream-rpms" \
2023-04-01 18:00:37 +02:00
--enablerepo "rhel-9-for-$ARCH_SUFFIX-baseos-rpms" \
--enablerepo "rhel-9-for-$ARCH_SUFFIX-appstream-rpms" \
--enablerepo "codeready-builder-for-rhel-9-$ARCH_SUFFIX-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