This is an automated email from the ASF dual-hosted git repository.
angeh pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract-cn-office.git
The following commit(s) were added to refs/heads/develop by this push:
new 608413c FINCN-170 create multi-stage Docker build (#12)
608413c is described below
commit 608413c5966483ac90cca522ddd9fb9172971669
Author: aasaru <[email protected]>
AuthorDate: Tue Aug 20 16:31:11 2019 +0300
FINCN-170 create multi-stage Docker build (#12)
---
.dockerignore | 10 ----------
Dockerfile | 12 +++++++++---
2 files changed, 9 insertions(+), 13 deletions(-)
diff --git a/.dockerignore b/.dockerignore
index 8d88495..a3b6dc5 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -1,17 +1,7 @@
-api/
-component-test/
-gradle/
-gradlew.bat
LICENSE
README.md
-settings.gradle
-build.gradle
docs/
-gradlew
HEADER
NOTICE.txt
-service/
.git/
-.gradle/
.gitignore
-shared.gradle
\ No newline at end of file
diff --git a/Dockerfile b/Dockerfile
index a271dd4..05b9612 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -16,7 +16,13 @@
# specific language governing permissions and limitations
# under the License.
#
-FROM openjdk:8-jdk-alpine
+FROM openjdk:8-jdk-alpine AS builder
+RUN mkdir builddir
+COPY . builddir
+WORKDIR builddir
+RUN ./gradlew publishToMavenLocal
+
+FROM openjdk:8-jdk-alpine AS runner
ARG office_port=2023
@@ -25,6 +31,6 @@ ENV server.max-http-header-size=16384 \
server.port=$office_port
WORKDIR /tmp
-COPY office-service-boot-0.1.0-BUILD-SNAPSHOT.jar .
+COPY --from=builder
/builddir/service/build/libs/service-0.1.0-BUILD-SNAPSHOT-boot.jar
./office-service-boot.jar
-CMD ["java", "-jar", "office-service-boot-0.1.0-BUILD-SNAPSHOT.jar"]
+CMD ["java", "-jar", "office-service-boot.jar"]