view docker/Dockerfile.artifacts @ 9686:33303817ed37 3.2.x

Deploy webapp as d4e-river It's at the one hand expected in the print-url parameter in web.xml and at the other hand nicer than 'gwt-client-1.0-SNAPSHOT'.
author Tom Gottfried <tom@intevation.de>
date Mon, 03 Aug 2020 12:17:24 +0200
parents 537fe44f2792
children 278d285a16bf
line wrap: on
line source
# Docker file for D4E River artifact server

FROM centos:7
MAINTAINER tom@intevation.de

# Install prerequisites
RUN yum -y install maven mercurial

WORKDIR /opt/d4e
ENV REPO_URL https://scm.wald.intevation.org/hg/dive4elements/
ENV BRANCH 3.2.x
RUN hg clone -b $BRANCH $REPO_URL/framework
RUN hg clone -b $BRANCH $REPO_URL/http-client

RUN mvn -q -f framework/pom.xml install
RUN mvn -q -f http-client/pom.xml install

ADD . river

RUN mvn -q -f river/backend/pom.xml install

WORKDIR river/artifacts
RUN ../../framework/artifact-database/bin/createArtifacts.sh && \
    mv artifactsdb doc/
RUN ./bin/createDatacage.sh && \
    mv datacagedb doc/

EXPOSE 8181

CMD mvn -Dexec.mainClass=org.dive4elements.artifactdatabase.App \
        -Dartifact.database.dir="/opt/d4e/river/artifacts/doc/conf" \
        compile exec:java

http://dive4elements.wald.intevation.org