You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@metamodel.apache.org by ka...@apache.org on 2019/01/24 05:25:39 UTC

[metamodel-membrane] 03/06: Turning on "batch mode" and "quite mode" for the Docker mvn command.

This is an automated email from the ASF dual-hosted git repository.

kaspersor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/metamodel-membrane.git

commit 4f853908a15a83a8b8f61a0023bc2cdf36d43a13
Author: Kasper Sørensen <i....@gmail.com>
AuthorDate: Sun Jan 13 17:11:23 2019 -0800

    Turning on "batch mode" and "quite mode" for the Docker mvn command.
    
    The logs in Travis CI was outgrowing the allowed maximum. This should
    make the build a lot more quiet, I hope.
---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index cd366e1..40b8c2c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -24,6 +24,6 @@ ENV DATA_DIRECTORY=/data
 COPY . /usr/src/app
 WORKDIR /usr/src/app
 
-RUN mvn clean install -Pdockerbuild -DskipTests
+RUN mvn -B -q clean install -Pdockerbuild -DskipTests
 
 CMD java -server -jar undertow/target/membrane-undertow-server.jar