From 43d1e354522b65597b5b05a140b74de74847c796 Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Tue, 6 Oct 2020 06:11:11 -0400 Subject: [PATCH] Fixed image build on CentOS --- agent/centos/Dockerfile | 1 + proxy-mysql/centos/Dockerfile | 1 + proxy-sqlite3/centos/Dockerfile | 1 + server-mysql/centos/Dockerfile | 1 + server-pgsql/centos/Dockerfile | 1 + 5 files changed, 5 insertions(+) diff --git a/agent/centos/Dockerfile b/agent/centos/Dockerfile index 410dd1b08..372820724 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 a749d3fa2..605c8a324 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 df3bffa6a..1eb8c7a2a 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 75fbf543d..5f5cfc61c 100644 --- a/server-mysql/centos/Dockerfile +++ b/server-mysql/centos/Dockerfile @@ -50,6 +50,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 49549744a..e21b716ff 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 && \