From 91ec77bdee91aa2f3f6d5592e03b6f05834bd0e6 Mon Sep 17 00:00:00 2001 From: jshum2479 Date: Thu, 6 May 2021 13:01:28 -0500 Subject: [PATCH] Remove WDT_ENCRYPTION_KEY argument from update image mustache --- .../src/main/resources/docker-files/Update_Image.mustache | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/imagetool/src/main/resources/docker-files/Update_Image.mustache b/imagetool/src/main/resources/docker-files/Update_Image.mustache index e4d34cf84..2c2ee0420 100644 --- a/imagetool/src/main/resources/docker-files/Update_Image.mustache +++ b/imagetool/src/main/resources/docker-files/Update_Image.mustache @@ -6,7 +6,6 @@ # {{#isWdtEnabled}} FROM {{baseImage}} as wdt_build - ARG WDT_ENCRYPTION_KEY LABEL com.oracle.weblogic.imagetool.buildid="{{buildId}}" ENV WLSDEPLOY_PROPERTIES={{{wlsdeploy_properties}}} \ @@ -52,7 +51,7 @@ {{^modelOnly}} RUN cd {{{wdt_home}}}/weblogic-deploy/bin \ - && {{#isWdtUseEncryption}}echo $WDT_ENCRYPTION_KEY | {{/isWdtUseEncryption}} ./{{wdtCommand}} \ + && {{#isWdtUseEncryption}}echo {{{wdtEncryptionKey}}} | {{/isWdtUseEncryption}} ./{{wdtCommand}} \ -oracle_home {{{oracle_home}}} \ -domain_home {{{domain_home}}} \ -domain_type {{domainType}} \