Mercurial > dive4elements > river
comparison docker/Dockerfile.gwt-client @ 9732:a6c6bba0fc4b 3.2.x
Run yum commands silently
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Fri, 22 Jul 2022 12:57:11 +0200 |
parents | 13e2d38ad314 |
children | 4fabdc8ed97b |
comparison
equal
deleted
inserted
replaced
9731:1dfcbb09c231 | 9732:a6c6bba0fc4b |
---|---|
3 FROM centos:7 | 3 FROM centos:7 |
4 MAINTAINER tom@intevation.de | 4 MAINTAINER tom@intevation.de |
5 | 5 |
6 # Necessary to run further yum-installs inside Docker container, | 6 # Necessary to run further yum-installs inside Docker container, |
7 # if not already part of the base image: | 7 # if not already part of the base image: |
8 RUN yum -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 -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 | 12 |
13 WORKDIR /opt/d4e | 13 WORKDIR /opt/d4e |
14 ENV REPO_URL https://scm.wald.intevation.org/hg/dive4elements/ | 14 ENV REPO_URL https://scm.wald.intevation.org/hg/dive4elements/ |
15 ENV BRANCH 3.2.x | 15 ENV BRANCH 3.2.x |
16 RUN hg clone -b $BRANCH $REPO_URL/framework | 16 RUN hg clone -b $BRANCH $REPO_URL/framework |