Skip to content
Snippets Groups Projects
Commit d6023443 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

add english locale, fixes #4321

Closes #4321

Merge request studip/studip!3120
parent 26e02e32
No related branches found
No related tags found
No related merge requests found
......@@ -12,9 +12,15 @@ RUN apt update && apt install -y --no-install-recommends \
libzip-dev \
libicu-dev \
libwebp-dev \
locales \
vim \
&& rm -rf /var/lib/apt/lists/*
# Install locales
RUN sed -i -e 's/# en_GB.UTF-8 UTF-8/en_GB.UTF-8 UTF-8/' /etc/locale.gen \
&& dpkg-reconfigure --frontend=noninteractive locales \
&& update-locale
# Install php extensions
RUN docker-php-ext-configure gd --with-jpeg --with-webp
RUN docker-php-ext-install gettext gd zip pdo_mysql mysqli intl
......
......@@ -12,9 +12,15 @@ RUN apt update && apt install -y --no-install-recommends \
libzip-dev \
libicu-dev \
libwebp-dev \
locales \
vim \
&& rm -rf /var/lib/apt/lists/*
# Install locales
RUN sed -i -e 's/# en_GB.UTF-8 UTF-8/en_GB.UTF-8 UTF-8/' /etc/locale.gen \
&& dpkg-reconfigure --frontend=noninteractive locales \
&& update-locale
# Install php extensions
RUN docker-php-ext-configure gd --with-jpeg --with-webp
RUN docker-php-ext-install pdo gettext curl gd mbstring zip pdo pdo_mysql mysqli intl json
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment