You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by vo...@apache.org on 2020/12/05 19:53:18 UTC

[fineract] branch vorburger-Dockerfile-gradle created (now 144769d)

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

vorburger pushed a change to branch vorburger-Dockerfile-gradle
in repository https://gitbox.apache.org/repos/asf/fineract.git.


      at 144769d  Minor performance optimization to Gradle build in Dockerfile

This branch includes the following new commits:

     new 144769d  Minor performance optimization to Gradle build in Dockerfile

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[fineract] 01/01: Minor performance optimization to Gradle build in Dockerfile

Posted by vo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vorburger pushed a commit to branch vorburger-Dockerfile-gradle
in repository https://gitbox.apache.org/repos/asf/fineract.git

commit 144769d8601e2d1441bf0690d6a89efd3f076116
Author: Michael Vorburger ⛑️ <mi...@vorburger.ch>
AuthorDate: Sat Dec 5 20:53:07 2020 +0100

    Minor performance optimization to Gradle build in Dockerfile
---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 3713333..010acec 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -22,7 +22,7 @@ RUN apt-get update -qq && apt-get install -y wget
 COPY . fineract
 WORKDIR /fineract
 
-RUN ./gradlew -PautomatedBuild=true --no-daemon -q -x rat -x test bootJar
+RUN ./gradlew --no-daemon -q -x rat -x compileTestJava -x test -x spotlessJavaCheck -x spotlessJava bootJar
 
 WORKDIR /fineract/target
 RUN jar -xf /fineract/fineract-provider/build/libs/fineract-provider*.jar