Mercurial > dive4elements > river
comparison docker/Dockerfile.gwt-client @ 9787:df61a569a289 3.2.x
Prevent Tomcat from logging to files
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Tue, 16 May 2023 18:45:12 +0200 |
parents | 7b7a58a93864 |
children | 8d71363cd3bd |
comparison
equal
deleted
inserted
replaced
9786:b5af33e5ce1e | 9787:df61a569a289 |
---|---|
7 # if not already part of the base image: | 7 # if not already part of the base image: |
8 RUN yum -q -y install yum-plugin-ovl && rpm --rebuilddb | 8 RUN yum -q -y install yum-plugin-ovl && rpm --rebuilddb |
9 | 9 |
10 # Install prerequisites | 10 # Install prerequisites |
11 RUN yum -q -y install maven mercurial tomcat gnu-free-sans-fonts curl | 11 RUN yum -q -y install maven mercurial tomcat gnu-free-sans-fonts curl |
12 | |
13 # Prevent Tomcat from logging to files | |
14 # (JRE default is logging to System.err) | |
15 RUN rm /etc/tomcat/logging.properties | |
12 | 16 |
13 WORKDIR /opt/d4e | 17 WORKDIR /opt/d4e |
14 ENV REPO_URL https://hg.wald.intevation.org/dive4elements/ | 18 ENV REPO_URL https://hg.wald.intevation.org/dive4elements/ |
15 ENV BRANCH 3.2.x | 19 ENV BRANCH 3.2.x |
16 RUN hg clone -b $BRANCH $REPO_URL/framework | 20 RUN hg clone -b $BRANCH $REPO_URL/framework |