diff --git a/agent/centos/Dockerfile b/agent/centos/Dockerfile index cceb23962..57d0d3d4d 100644 --- a/agent/centos/Dockerfile +++ b/agent/centos/Dockerfile @@ -25,6 +25,7 @@ RUN set -eux && \ dnf --quiet makecache && \ dnf -y install --setopt=tsflags=nodocs --setopt=install_weak_deps=False --best \ libcurl-minimal \ + zlib \ tzdata \ openssl-libs && \ curl -L "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini" -o /sbin/tini && \ diff --git a/proxy-mysql/centos/Dockerfile b/proxy-mysql/centos/Dockerfile index 570d8358a..99a6cb8bb 100644 --- a/proxy-mysql/centos/Dockerfile +++ b/proxy-mysql/centos/Dockerfile @@ -46,6 +46,7 @@ RUN set -eux && \ openldap \ openssl-libs \ pcre \ + zlib \ unixODBC && \ curl -L "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini" -o /sbin/tini && \ curl -L "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini.asc" -o /tmp/tini.asc && \ diff --git a/proxy-sqlite3/centos/Dockerfile b/proxy-sqlite3/centos/Dockerfile index 2a550aa2b..da3fb197a 100644 --- a/proxy-sqlite3/centos/Dockerfile +++ b/proxy-sqlite3/centos/Dockerfile @@ -43,6 +43,7 @@ RUN set -eux && \ openldap \ openssl-libs \ pcre \ + zlib \ unixODBC && \ curl -L "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini" -o /sbin/tini && \ curl -L "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini.asc" -o /tmp/tini.asc && \ diff --git a/server-mysql/centos/Dockerfile b/server-mysql/centos/Dockerfile index d56f1f88e..dd34d3641 100644 --- a/server-mysql/centos/Dockerfile +++ b/server-mysql/centos/Dockerfile @@ -51,6 +51,7 @@ RUN set -eux && \ openldap \ openssl-libs \ pcre \ + zlib \ unixODBC && \ curl -L "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini" -o /sbin/tini && \ curl -L "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini.asc" -o /tmp/tini.asc && \ diff --git a/server-pgsql/centos/Dockerfile b/server-pgsql/centos/Dockerfile index 86c446a10..096341c1c 100644 --- a/server-pgsql/centos/Dockerfile +++ b/server-pgsql/centos/Dockerfile @@ -50,6 +50,7 @@ RUN set -eux && \ pcre \ postgresql \ postgresql-libs \ + zlib \ unixODBC && \ curl -L "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini" -o /sbin/tini && \ curl -L "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini.asc" -o /tmp/tini.asc && \