Mercurial > dive4elements > river
comparison docker/Dockerfile.gwt-client @ 9715:278d285a16bf 3.2.x
Ensure needed packages are installed
They might or might not be installed in the base image already.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Mon, 22 Mar 2021 14:45:36 +0100 |
parents | 25532d3c0af2 |
children | 13e2d38ad314 |
comparison
equal
deleted
inserted
replaced
9714:05e844922148 | 9715:278d285a16bf |
---|---|
1 # Docker file for D4E River GWT client | 1 # Docker file for D4E River GWT client |
2 | 2 |
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, | |
7 # if not already part of the base image: | |
8 RUN yum -y install yum-plugin-ovl | |
9 | |
6 # Install prerequisites | 10 # Install prerequisites |
7 RUN yum -y install maven mercurial tomcat gnu-free-sans-fonts | 11 RUN yum -y install maven mercurial tomcat gnu-free-sans-fonts curl |
8 | 12 |
9 WORKDIR /opt/d4e | 13 WORKDIR /opt/d4e |
10 ENV REPO_URL https://scm.wald.intevation.org/hg/dive4elements/ | 14 ENV REPO_URL https://scm.wald.intevation.org/hg/dive4elements/ |
11 ENV BRANCH 3.2.x | 15 ENV BRANCH 3.2.x |
12 RUN hg clone -b $BRANCH $REPO_URL/framework | 16 RUN hg clone -b $BRANCH $REPO_URL/framework |