Skip to content

Commit

Permalink
fix: Execute localedef for locales possibly used during tests
Browse files Browse the repository at this point in the history
Part of request #38254 Move test images to an el9 base
  • Loading branch information
LeSuisse committed May 23, 2024
1 parent d1b9c5d commit 5b1da9e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion el9.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ RUN dnf install -v -y epel-release https://rpms.remirepo.net/enterprise/remi-rel
perl \
glibc-locale-source \
&& dnf clean all && \
echo 'pcov.enabled = 1' >> /etc/opt/remi/${PHP_BASE}/php.d/40-pcov.ini
echo 'pcov.enabled = 1' >> /etc/opt/remi/${PHP_BASE}/php.d/40-pcov.ini && \
localedef -i fr_FR -c -f UTF-8 fr_FR.UTF-8 && \
localedef -i en_US -c -f UTF-8 en_US.UTF-8 && \
localedef -i en_GB -c -f UTF-8 en_GB.UTF-8

CMD [ "make", "-C", "/tuleap", "phpunit-run-as-owner" ]

Expand Down

0 comments on commit 5b1da9e

Please sign in to comment.