From 20579faaa2d1e56dd4de2d32b250fa710ffa96f7 Mon Sep 17 00:00:00 2001 From: Daniel Dolezal Date: Mon, 18 Aug 2025 10:10:59 +0200 Subject: [PATCH] add mbstring extension --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3d9c883..94985f6 100755 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ENV TZ=Europe/Vienna RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN apt-get update && apt-get update -y && apt-get install -y software-properties-common && apt-add-repository universe && add-apt-repository ppa:ondrej/php -RUN apt-get update && apt-get install -y apache2 php libapache2-mod-php php-mysql php-common apt-utils tzdata nano && apt-get clean +RUN apt-get update && apt-get install -y apache2 php libapache2-mod-php php-mysql php-common php-mbstring apt-utils tzdata nano && apt-get clean ENV APACHE_RUN_USER=www-data ENV APACHE_RUN_GROUP=www-data