Mercurial > dive4elements > river
comparison docker/Dockerfile.gwt-client @ 9796:13351afee667 3.2.x
Set locale in client container
Improves logging of non-ASCII characters.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Thu, 02 Nov 2023 17:48:58 +0100 |
parents | 8d71363cd3bd |
children | 74bbf3c5d1ec |
comparison
equal
deleted
inserted
replaced
9795:8d71363cd3bd | 9796:13351afee667 |
---|---|
45 RUN mvn -q -f river/gwt-client/pom.xml package | 45 RUN mvn -q -f river/gwt-client/pom.xml package |
46 | 46 |
47 FROM base | 47 FROM base |
48 RUN yum -q -y install tomcat gnu-free-sans-fonts | 48 RUN yum -q -y install tomcat gnu-free-sans-fonts |
49 | 49 |
50 RUN localedef -i en_US -f UTF-8 en_US.UTF-8 | |
51 RUN echo "LANG=en_US.utf8" > /etc/locale.conf | |
52 ENV LANG en_US.utf8 | |
53 | |
50 # Prevent Tomcat from logging to files | 54 # Prevent Tomcat from logging to files |
51 # (JRE default is logging to System.err) | 55 # (JRE default is logging to System.err) |
52 RUN rm /etc/tomcat/logging.properties | 56 RUN rm /etc/tomcat/logging.properties |
53 | 57 |
54 # Configure tomcat | 58 # Configure tomcat |