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

56 lines
1.9 KiB
Docker
Raw Normal View History

2021-10-06 22:39:49 +02:00
# syntax=docker/dockerfile:1
2023-02-01 07:20:30 +01:00
FROM quay.io/centos/centos:stream9
2021-10-06 22:39:49 +02:00
2022-07-05 14:46:20 +02:00
ARG MAJOR_VERSION=6.4
2023-10-31 10:16:23 +01:00
ARG ZBX_VERSION=${MAJOR_VERSION}.8
2021-10-06 22:39:49 +02:00
2021-10-16 17:49:19 +02:00
ENV TERM=xterm \
ZBX_VERSION=${ZBX_VERSION} \
2021-10-06 22:39:49 +02:00
PATH=/usr/local/go/bin:$PATH
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
RUN set -eux && \
2023-02-01 07:20:30 +01:00
REPOLIST="baseos,appstream,crb" && \
2021-10-06 22:39:49 +02:00
INSTALL_PKGS="autoconf \
automake \
bash \
gcc \
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 \
java-1.8.0-openjdk-devel \
git \
gettext \
2022-05-10 18:25:07 +02:00
go-toolset \
2021-10-06 22:39:49 +02:00
unixODBC-devel" && \
2021-10-16 17:49:19 +02:00
dnf -y install \
--disablerepo "*" \
--enablerepo "${REPOLIST}" \
--setopt=tsflags=nodocs \
--setopt=install_weak_deps=False \
--best \
2021-10-06 22:39:49 +02:00
${INSTALL_PKGS} && \
2021-10-16 18:18:04 +02:00
dnf -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