From 01da599604ccf55b1c7cbd3fd8e89fe36e17b35b Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Thu, 8 Sep 2022 17:08:45 +0300 Subject: [PATCH] Fixed secure LDAP on Ubuntu images --- Dockerfiles/web-apache-mysql/ubuntu/Dockerfile | 1 + Dockerfiles/web-apache-pgsql/ubuntu/Dockerfile | 1 + Dockerfiles/web-nginx-mysql/ubuntu/Dockerfile | 1 + Dockerfiles/web-nginx-pgsql/ubuntu/Dockerfile | 1 + 4 files changed, 4 insertions(+) diff --git a/Dockerfiles/web-apache-mysql/ubuntu/Dockerfile b/Dockerfiles/web-apache-mysql/ubuntu/Dockerfile index 1bf8c47b3..e36a54648 100644 --- a/Dockerfiles/web-apache-mysql/ubuntu/Dockerfile +++ b/Dockerfiles/web-apache-mysql/ubuntu/Dockerfile @@ -38,6 +38,7 @@ RUN set -eux && \ ca-certificates \ mysql-client \ locales \ + libldap-common \ php8.1-bcmath \ php8.1-gd \ php8.1-ldap \ diff --git a/Dockerfiles/web-apache-pgsql/ubuntu/Dockerfile b/Dockerfiles/web-apache-pgsql/ubuntu/Dockerfile index b687653db..308bd25ea 100644 --- a/Dockerfiles/web-apache-pgsql/ubuntu/Dockerfile +++ b/Dockerfiles/web-apache-pgsql/ubuntu/Dockerfile @@ -37,6 +37,7 @@ RUN set -eux && \ libapache2-mod-php \ ca-certificates \ locales \ + libldap-common \ php8.1-bcmath \ php8.1-gd \ php8.1-ldap \ diff --git a/Dockerfiles/web-nginx-mysql/ubuntu/Dockerfile b/Dockerfiles/web-nginx-mysql/ubuntu/Dockerfile index 820bb2f0d..13f5a5743 100644 --- a/Dockerfiles/web-nginx-mysql/ubuntu/Dockerfile +++ b/Dockerfiles/web-nginx-mysql/ubuntu/Dockerfile @@ -37,6 +37,7 @@ RUN set -eux && \ mysql-client \ nginx \ locales \ + libldap-common \ php8.1-bcmath \ php8.1-fpm \ php8.1-gd \ diff --git a/Dockerfiles/web-nginx-pgsql/ubuntu/Dockerfile b/Dockerfiles/web-nginx-pgsql/ubuntu/Dockerfile index f38a2d90f..bb566ec74 100644 --- a/Dockerfiles/web-nginx-pgsql/ubuntu/Dockerfile +++ b/Dockerfiles/web-nginx-pgsql/ubuntu/Dockerfile @@ -36,6 +36,7 @@ RUN set -eux && \ curl \ nginx \ locales \ + libldap-common \ php8.1-bcmath \ php8.1-fpm \ php8.1-gd \