mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-23 00:03:42 +01:00
56 lines
1.9 KiB
Docker
56 lines
1.9 KiB
Docker
# syntax=docker/dockerfile:1
|
|
FROM quay.io/centos/centos:stream8
|
|
|
|
ARG MAJOR_VERSION=6.2
|
|
ARG ZBX_VERSION=${MAJOR_VERSION}
|
|
|
|
ENV TERM=xterm \
|
|
ZBX_VERSION=${ZBX_VERSION} \
|
|
PATH=/usr/local/go/bin:$PATH
|
|
|
|
LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zabbix.com>" \
|
|
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" \
|
|
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}"
|
|
|
|
RUN set -eux && \
|
|
REPOLIST="baseos,appstream,powertools" && \
|
|
INSTALL_PKGS="autoconf \
|
|
automake \
|
|
bash \
|
|
gcc \
|
|
pcre2-devel \
|
|
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 \
|
|
go-toolset \
|
|
unixODBC-devel" && \
|
|
dnf -y module enable mysql && \
|
|
dnf -y install \
|
|
--disablerepo "*" \
|
|
--enablerepo "${REPOLIST}" \
|
|
--setopt=tsflags=nodocs \
|
|
--setopt=install_weak_deps=False \
|
|
--best \
|
|
${INSTALL_PKGS} && \
|
|
dnf -y clean all && \
|
|
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
|