Skip to content

Instantly share code, notes, and snippets.

@iolufemi
Created November 5, 2021 22:23
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save iolufemi/a39521f43c7e41640dad3e939899d6b5 to your computer and use it in GitHub Desktop.
Save iolufemi/a39521f43c7e41640dad3e939899d6b5 to your computer and use it in GitHub Desktop.
Add Pentaho to Apache Fineract in a Docker Environment
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
FROM openjdk:11 AS builder
RUN apt-get update -qq && apt-get install -y wget && apt install -y git
COPY . fineract
WORKDIR /fineract
RUN ./gradlew --no-daemon -q -x rat -x compileTestJava -x test -x spotlessJavaCheck -x spotlessJava bootJar
# https://issues.apache.org/jira/browse/LEGAL-462
# https://issues.apache.org/jira/browse/FINERACT-762
# We include an alternative JDBC driver (which is faster, but not allowed to be default in Apache distribution)
# allowing implementations to switch the driver used by changing start-up parameters (for both tenants and each tenant DB)
# The commented out lines in the docker-compose.yml illustrate how to do this.
WORKDIR /fineract/libs
RUN wget -q https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.23/mysql-connector-java-8.0.23.jar
WORKDIR /
# Setting up reports
RUN git clone https://github.com/vorburger/fineract-pentaho.git
RUN cd fineract-pentaho && ./gradlew -x test distZip && cd ..
RUN mkdir -p /root/.mifosx/pentahoReports/
RUN cp ./fineract-pentaho/pentahoReports/* /root/.mifosx/pentahoReports/
RUN mkdir -p /fineract-pentaho/build/run/lib/
RUN cp /fineract/libs/* /fineract-pentaho/build/run/lib/
RUN cp /fineract/fineract-provider/build/libs/fineract-provider*.jar /fineract-pentaho/build/run
# Add our fineract-pentaho reporting plugin, like so:
RUN unzip /fineract-pentaho/build/distributions/fineract-pentaho.zip -d /fineract-pentaho/build/run/ && rm /fineract-pentaho/build/run/fineract-pentaho.jar
RUN cp /fineract-pentaho/build/run/pentahoReports/* /root/.mifosx/pentahoReports/ && rm -rf /fineract-pentaho/build/run/pentahoReports
# =========================================
FROM openjdk:15 as fineract
COPY --from=builder /fineract-pentaho/build /fineract-pentaho/build
COPY --from=builder /root/.mifosx /root/.mifosx
WORKDIR /fineract-pentaho
ENTRYPOINT ["java", "-Dloader.path=build/run/lib/", "-jar", "build/run/fineract-provider.jar"]
@fidelsam1992
Copy link

Hello @iolufemi, Thank you for sharing this Dockerfile
Can you please share which steps to follow to use this file and run mifos with pentaho ?
Thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment