aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordanielhanrahan <daniel.hanrahan@est.tech>2022-09-01 14:55:46 +0100
committerdanielhanrahan <daniel.hanrahan@est.tech>2022-09-01 14:55:46 +0100
commit765bea37f3d06155581133e0d4ed8468cb62298a (patch)
tree4968f5c37dddb51fc8a3a97c7d89a2f54ec4bd8c
parent35e46060a44f17c68cff654c5f65e3831af03847 (diff)
Allow setting external dockerfile for apex-pdp
If building with an external dockerfile, e.g. using mvn clean install -Pdocker -DdockerFile=/path/to/dockerfile docker will look for project files in the same directory as the new dockerfile. A new property is added for setting the context path, to allow using existing project files in src/main/docker. Issue-ID: POLICY-4334 Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech> Change-Id: I52606f85b720449e8ed9b532e55200c9f825e3cd
-rw-r--r--packages/apex-pdp-docker/pom.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/apex-pdp-docker/pom.xml b/packages/apex-pdp-docker/pom.xml
index ed5733bb5..16f2370b8 100644
--- a/packages/apex-pdp-docker/pom.xml
+++ b/packages/apex-pdp-docker/pom.xml
@@ -40,6 +40,7 @@
<docker.skip>false</docker.skip>
<docker.skip.build>false</docker.skip.build>
<docker.skip.push>false</docker.skip.push>
+ <docker.contextDir>${project.basedir}/src/main/docker</docker.contextDir>
<maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format>
</properties>
@@ -101,6 +102,7 @@
<build>
<cleanup>try</cleanup>
<dockerFile>${dockerFile}</dockerFile>
+ <contextDir>${docker.contextDir}</contextDir>
<tags>
<tag>${project.version}</tag>
<tag>${project.version}-${maven.build.timestamp}</tag>