Skip to content

Commit 882e0e3

Browse files
authored
wdtJavaOptions value should not be HTML encoded (#134)
1 parent 2a7fe64 commit 882e0e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

imagetool/src/main/resources/docker-files/Create_Image.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ RUN {{{oracle_home}}}/OPatch/opatch napply -silent -oh {{{oracle_home}}} -phBase
124124
FROM WLS_BUILD as WDT_BUILD
125125
LABEL com.oracle.weblogic.imagetool.buildid="{{buildId}}"
126126

127-
ENV WLSDEPLOY_PROPERTIES="{{wlsdeploy_properties}} -Djava.security.egd=file:/dev/./urandom" \
127+
ENV WLSDEPLOY_PROPERTIES="{{{wlsdeploy_properties}}} -Djava.security.egd=file:/dev/./urandom" \
128128
LC_ALL=${DEFAULT_LOCALE:-en_US.UTF-8} \
129129
DOMAIN_HOME={{{domain_home}}}
130130

imagetool/src/main/resources/docker-files/Update_Image.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
FROM {{baseImage}} as WDT_BUILD
99
LABEL com.oracle.weblogic.imagetool.buildid="{{buildId}}"
1010

11-
ENV WLSDEPLOY_PROPERTIES={{wlsdeploy_properties}} \
11+
ENV WLSDEPLOY_PROPERTIES={{{wlsdeploy_properties}}} \
1212
LC_ALL=${DEFAULT_LOCALE:-en_US.UTF-8} \
1313
DOMAIN_HOME={{{domain_home}}} \
1414
PATH=${PATH}:{{{java_home}}}/bin:{{{oracle_home}}}/oracle_common/common/bin:{{{oracle_home}}}/wlserver/common/bin:{{{domain_home}}}/bin:{{{oracle_home}}}

0 commit comments

Comments
 (0)