You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ATM I have to modify the builder image to allow other locales:
FROM centos/php-73-centos7
USER 0
RUN sed -i '/override_install_langs/s/=.*/=en_US.utf8,en_GB.utf8,de_DE.utf8,fr_FR.utf8,es_ES.utf8,es_MX.utf8/' /etc/yum.conf \
&& yum upgrade -y glibc-common \
&& yum reinstall -y glibc-common \
&& yum clean all
USER 1001
It would be great to allow specifying locales to build in the repository that gets built, say in .s2i/.
The text was updated successfully, but these errors were encountered:
FROM registry.access.redhat.com/ubi9/php-80:latest
USER 0
RUN for locale in de_DE fr_FR es_ES es_MX; do \
localedef -i "$locale" -f UTF-8 "$locale".utf8; done
USER 1001
ATM I have to modify the builder image to allow other locales:
It would be great to allow specifying locales to build in the repository that gets built, say in
.s2i/
.The text was updated successfully, but these errors were encountered: