mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-03-02 00:21:39 +01:00
Fixed HTTPs checks in Zabbix agent
This commit is contained in:
commit
f8554dd126
@ -38,8 +38,9 @@ RUN set -eux && \
|
|||||||
bash \
|
bash \
|
||||||
coreutils \
|
coreutils \
|
||||||
iputils \
|
iputils \
|
||||||
libldap \
|
pcre
|
||||||
pcre && \
|
libcurl \
|
||||||
|
libldap && \
|
||||||
rm -rf /var/cache/apk/*
|
rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
ARG MAJOR_VERSION=4.0
|
ARG MAJOR_VERSION=4.0
|
||||||
@ -58,6 +59,7 @@ RUN set -eux && \
|
|||||||
alpine-sdk \
|
alpine-sdk \
|
||||||
autoconf \
|
autoconf \
|
||||||
automake \
|
automake \
|
||||||
|
curl-dev \
|
||||||
openssl-dev \
|
openssl-dev \
|
||||||
openldap-dev \
|
openldap-dev \
|
||||||
pcre-dev \
|
pcre-dev \
|
||||||
@ -77,6 +79,7 @@ RUN set -eux && \
|
|||||||
--sysconfdir=/etc/zabbix \
|
--sysconfdir=/etc/zabbix \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--enable-agent \
|
--enable-agent \
|
||||||
|
--with-libcurl \
|
||||||
--with-ldap \
|
--with-ldap \
|
||||||
--with-openssl \
|
--with-openssl \
|
||||||
--enable-ipv6 \
|
--enable-ipv6 \
|
||||||
|
@ -14,6 +14,7 @@ RUN set -eux && \
|
|||||||
yum ${YUM_FLAGS_DEV} install \
|
yum ${YUM_FLAGS_DEV} install \
|
||||||
autoconf \
|
autoconf \
|
||||||
automake \
|
automake \
|
||||||
|
libcurl-devel \
|
||||||
make \
|
make \
|
||||||
openssl-devel \
|
openssl-devel \
|
||||||
openldap-devel \
|
openldap-devel \
|
||||||
@ -33,6 +34,7 @@ RUN set -eux && \
|
|||||||
--sysconfdir=/etc/zabbix \
|
--sysconfdir=/etc/zabbix \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--enable-agent \
|
--enable-agent \
|
||||||
|
--with-libcurl \
|
||||||
--with-ldap \
|
--with-ldap \
|
||||||
--with-openssl \
|
--with-openssl \
|
||||||
--enable-ipv6 \
|
--enable-ipv6 \
|
||||||
@ -91,6 +93,7 @@ RUN set -eux && \
|
|||||||
yum ${YUM_FLAGS_COMMON} makecache && \
|
yum ${YUM_FLAGS_COMMON} makecache && \
|
||||||
yum ${YUM_FLAGS_PERSISTENT} install \
|
yum ${YUM_FLAGS_PERSISTENT} install \
|
||||||
libldap \
|
libldap \
|
||||||
|
libcurl \
|
||||||
openssl-libs && \
|
openssl-libs && \
|
||||||
yum ${YUM_FLAGS_PERSISTENT} clean all && \
|
yum ${YUM_FLAGS_PERSISTENT} clean all && \
|
||||||
rm -rf /var/cache/yum && \
|
rm -rf /var/cache/yum && \
|
||||||
|
@ -16,6 +16,7 @@ RUN set -eux && \
|
|||||||
DEBIAN_FRONTEND=noninteractive apt-get ${APT_FLAGS_DEV} install \
|
DEBIAN_FRONTEND=noninteractive apt-get ${APT_FLAGS_DEV} install \
|
||||||
autoconf \
|
autoconf \
|
||||||
automake \
|
automake \
|
||||||
|
libcurl4-openssl-dev \
|
||||||
libc6-dev \
|
libc6-dev \
|
||||||
libldap2-dev \
|
libldap2-dev \
|
||||||
libpcre3-dev \
|
libpcre3-dev \
|
||||||
@ -38,6 +39,7 @@ RUN set -eux && \
|
|||||||
--sysconfdir=/etc/zabbix \
|
--sysconfdir=/etc/zabbix \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--enable-agent \
|
--enable-agent \
|
||||||
|
--with-libcurl \
|
||||||
--with-ldap \
|
--with-ldap \
|
||||||
--with-openssl \
|
--with-openssl \
|
||||||
--enable-ipv6 \
|
--enable-ipv6 \
|
||||||
@ -103,6 +105,7 @@ RUN set -eux && \
|
|||||||
DEBIAN_FRONTEND=noninteractive apt-get ${APT_FLAGS_PERSISTENT} install \
|
DEBIAN_FRONTEND=noninteractive apt-get ${APT_FLAGS_PERSISTENT} install \
|
||||||
libpcre3 \
|
libpcre3 \
|
||||||
libssl1.1 \
|
libssl1.1 \
|
||||||
|
libcurl4 \
|
||||||
libldap-2.4 && \
|
libldap-2.4 && \
|
||||||
apt-get ${APT_FLAGS_COMMON} autoremove && \
|
apt-get ${APT_FLAGS_COMMON} autoremove && \
|
||||||
apt-get ${APT_FLAGS_COMMON} clean && \
|
apt-get ${APT_FLAGS_COMMON} clean && \
|
||||||
|
Loading…
Reference in New Issue
Block a user