Skip to content

Commit 4fd2600

Browse files
committed
removed LD_LIBRARY_PATH variable continuation causing Docker/Podman warning
1 parent 7958a57 commit 4fd2600

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
@@ -34,7 +34,7 @@ FROM os_update AS final_build
3434
{{#buildArgs}}ARG {{{.}}}
3535
{{/buildArgs}}
3636
ENV ORACLE_HOME={{{oracle_home}}} \
37-
LD_LIBRARY_PATH={{{oracle_home}}}/oracle_common/adr:$LD_LIBRARY_PATH \
37+
LD_LIBRARY_PATH={{{oracle_home}}}/oracle_common/adr \
3838
{{#installJava}}
3939
JAVA_HOME={{{java_home}}} \
4040
{{/installJava}}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ LABEL com.oracle.weblogic.imagetool.buildid="{{buildId}}"
4343
{{#buildArgs}}ARG {{{.}}}
4444
{{/buildArgs}}
4545
ENV ORACLE_HOME={{{oracle_home}}} \
46-
LD_LIBRARY_PATH={{{oracle_home}}}/oracle_common/adr:$LD_LIBRARY_PATH \
46+
LD_LIBRARY_PATH={{{oracle_home}}}/oracle_common/adr \
4747
{{#installJava}}
4848
JAVA_HOME={{{java_home}}} \
4949
{{/installJava}}

0 commit comments

Comments
 (0)