Mercurial > dive4elements > river
comparison docker/Dockerfile.artifacts @ 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 | 537fe44f2792 |
children | c3afc0274bba |
comparison
equal
deleted
inserted
replaced
9714:05e844922148 | 9715:278d285a16bf |
---|---|
1 # Docker file for D4E River artifact server | 1 # Docker file for D4E River artifact server |
2 | 2 |
3 FROM centos:7 | 3 FROM centos:7 |
4 MAINTAINER tom@intevation.de | 4 MAINTAINER tom@intevation.de |
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 | |
5 | 9 |
6 # Install prerequisites | 10 # Install prerequisites |
7 RUN yum -y install maven mercurial | 11 RUN yum -y install maven mercurial |
8 | 12 |
9 WORKDIR /opt/d4e | 13 WORKDIR /opt/d4e |