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

66 lines
2.1 KiB
Docker
Raw Normal View History

2021-10-06 22:39:49 +02:00
# syntax=docker/dockerfile:1
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} \
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
RUN --mount=type=tmpfs,target=/var/lib/dnf/ \
set -eux && \
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 \
libmodbus-devel \
2021-10-06 22:39:49 +02:00
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-26 06:17:36 +01:00
microdnf -y install \
2021-10-16 17:49:19 +02:00
--disablerepo "*" \
--enablerepo "extras-common" \
--setopt=install_weak_deps=0 \
--setopt=keepcache=0 \
2021-10-16 17:49:19 +02:00
--best \
--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