diff --git a/web-apache-mysql/ubuntu/Dockerfile b/web-apache-mysql/ubuntu/Dockerfile index ee8e1f43c..394e70a33 100644 --- a/web-apache-mysql/ubuntu/Dockerfile +++ b/web-apache-mysql/ubuntu/Dockerfile @@ -27,6 +27,7 @@ RUN set -eux && \ libapache2-mod-php \ ca-certificates \ mysql-client \ + locales \ php7.2-bcmath \ php7.2-gd \ php7.2-json \ @@ -69,8 +70,7 @@ RUN set -eux && \ apt-get -y update && \ DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ gettext \ - git \ - locales && \ + git && \ cd /usr/share/ && \ git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \ mkdir /usr/share/zabbix/ && \ @@ -98,8 +98,7 @@ RUN set -eux && \ chmod -R g=u /etc/apache2/ /etc/php/7.2/ && \ DEBIAN_FRONTEND=noninteractive apt-get -y purge \ gettext \ - git \ - locales && \ + git && \ apt-get -y autoremove && \ apt-get -y clean && \ rm -rf /var/lib/apt/lists/* diff --git a/web-apache-pgsql/ubuntu/Dockerfile b/web-apache-pgsql/ubuntu/Dockerfile index b93dfdd80..db3619c6f 100644 --- a/web-apache-pgsql/ubuntu/Dockerfile +++ b/web-apache-pgsql/ubuntu/Dockerfile @@ -26,6 +26,7 @@ RUN set -eux && \ curl \ libapache2-mod-php \ ca-certificates \ + locales \ php7.2-bcmath \ php7.2-gd \ php7.2-json \ @@ -69,8 +70,7 @@ RUN set -eux && \ apt-get -y update && \ DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ gettext \ - git \ - locales && \ + git && \ cd /usr/share/ && \ git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \ mkdir /usr/share/zabbix/ && \ @@ -98,8 +98,7 @@ RUN set -eux && \ chmod -R g=u /etc/apache2/ /etc/php/7.2/ && \ DEBIAN_FRONTEND=noninteractive apt-get -y purge \ gettext \ - git \ - locales && \ + git && \ apt-get -y autoremove && \ apt-get -y clean && \ rm -rf /var/lib/apt/lists/* diff --git a/web-nginx-mysql/ubuntu/Dockerfile b/web-nginx-mysql/ubuntu/Dockerfile index 40b7750a7..644d4bf5c 100644 --- a/web-nginx-mysql/ubuntu/Dockerfile +++ b/web-nginx-mysql/ubuntu/Dockerfile @@ -45,6 +45,7 @@ RUN set -eux && \ curl \ mysql-client \ nginx \ + locales \ php7.2-bcmath \ php7.2-fpm \ php7.2-gd \ @@ -78,8 +79,7 @@ RUN set -eux && \ apt-get -y update && \ DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ gettext \ - git \ - locales && \ + git && \ cd /usr/share/ && \ git clone ${ZBX_SOURCES} --branch ${ZBX_VERSION} --depth 1 --single-branch zabbix-${ZBX_VERSION} && \ mkdir /usr/share/zabbix/ && \ @@ -110,8 +110,7 @@ RUN set -eux && \ chmod -R g=u /var/lib/php/session/ && \ DEBIAN_FRONTEND=noninteractive apt-get -y purge \ gettext \ - git \ - locales && \ + git && \ apt-get -y autoremove && \ apt-get -y clean && \ rm -rf /var/lib/apt/lists/* diff --git a/web-nginx-pgsql/ubuntu/Dockerfile b/web-nginx-pgsql/ubuntu/Dockerfile index d23c0683e..807024fc7 100644 --- a/web-nginx-pgsql/ubuntu/Dockerfile +++ b/web-nginx-pgsql/ubuntu/Dockerfile @@ -44,6 +44,7 @@ RUN set -eux && \ DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ curl \ nginx \ + locales \ php7.2-bcmath \ php7.2-fpm \ php7.2-gd \