From ce295b0bf1bd121cbf5b4263216546d3fd053184 Mon Sep 17 00:00:00 2001 From: Eric Wiseblatt Date: Mon, 29 Oct 2018 12:30:03 -0400 Subject: [PATCH] fix(build): Fixed Dockerfile for composite builds. (#381) --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 95b97c782..8013b05b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,9 @@ COPY . workdir/ WORKDIR workdir -RUN GRADLE_USER_HOME=cache ./gradlew buildDeb -x test && \ +RUN GRADLE_USER_HOME=cache ./gradlew buildDeb \ + -I gradle/init-publish.gradle \ + -x test && \ dpkg -i ./echo-web/build/distributions/*.deb && \ cd .. && \ rm -rf workdir