File tree Expand file tree Collapse file tree 7 files changed +14
-14
lines changed
imagetool/src/main/resources/docker-files Expand file tree Collapse file tree 7 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 2
2
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
3
3
#
4
4
5
- FROM { {baseImage} } as os_update
5
+ FROM { {baseImage} } AS os_update
6
6
{ {#buildArgs} }ARG { {{.} }}
7
7
{ {/buildArgs} }
8
8
LABEL com.oracle.weblogic.imagetool.buildid="{ {buildId} }"
@@ -30,7 +30,7 @@ USER root
30
30
{ {> run-wdt } }
31
31
{ {/isWdtEnabled} }
32
32
33
- FROM os_update as final_build
33
+ FROM os_update AS final_build
34
34
{ {#buildArgs} }ARG { {{.} }}
35
35
{ {/buildArgs} }
36
36
ENV ORACLE_HOME={ {{oracle_home} }} \
Original file line number Diff line number Diff line change 3
3
#
4
4
5
5
{ {#isRebaseToTarget} }
6
- FROM { {sourceImage} } as source_image
7
- FROM { {targetImage} } as final_build
6
+ FROM { {sourceImage} } AS source_image
7
+ FROM { {targetImage} } AS final_build
8
8
{ {#buildArgs} }ARG { {{.} }}
9
9
{ {/buildArgs} }
10
10
@@ -13,8 +13,8 @@ LABEL com.oracle.weblogic.imagetool.buildid="{{buildId}}"
13
13
14
14
{ {/isRebaseToTarget} }
15
15
{ {#isRebaseToNew} }
16
- FROM { {sourceImage} } as source_image
17
- FROM { {baseImage} } as os_update
16
+ FROM { {sourceImage} } AS source_image
17
+ FROM { {baseImage} } AS os_update
18
18
19
19
ENV DOMAIN_HOME={ {{domain_home} }}
20
20
@@ -39,7 +39,7 @@ LABEL com.oracle.weblogic.imagetool.buildid="{{buildId}}"
39
39
{ {> install-middleware } }
40
40
{ {/installMiddleware} }
41
41
42
- FROM os_update as final_build
42
+ FROM os_update AS final_build
43
43
{ {#buildArgs} }ARG { {{.} }}
44
44
{ {/buildArgs} }
45
45
ENV ORACLE_HOME={ {{oracle_home} }} \
Original file line number Diff line number Diff line change 6
6
{ {> run-wdt } }
7
7
{ {/isWdtEnabled} }
8
8
9
- FROM { {baseImage} } as final_build
9
+ FROM { {baseImage} } AS final_build
10
10
{ {#buildArgs} }ARG { {{.} }}
11
11
{ {/buildArgs} }
12
12
USER root
Original file line number Diff line number Diff line change 5
5
#
6
6
# Create Auxiliary Image for WebLogic Kubernetes Operator
7
7
8
- FROM { {baseImage} } as os_update
8
+ FROM { {baseImage} } AS os_update
9
9
{ {#buildArgs} }ARG { {{.} }}
10
10
{ {/buildArgs} }
11
11
LABEL com.oracle.weblogic.imagetool.buildid="{ {buildId} }"
@@ -20,7 +20,7 @@ USER root
20
20
# Create the Oracle user that will be the owner of the installed software
21
21
{ {> create-user-group} }
22
22
23
- FROM os_update as wdt_build
23
+ FROM os_update AS wdt_build
24
24
25
25
RUN mkdir -p { {{wdt_home} }} \
26
26
&& mkdir -p { {{wdt_model_home} }} \
@@ -38,7 +38,7 @@ RUN mkdir -p {{{wdt_home}}} \
38
38
{ {/usingWdtTarGzInstaller} }
39
39
{ {/installWdt} }
40
40
41
- FROM os_update as final
41
+ FROM os_update AS final
42
42
43
43
ENV AUXILIARY_IMAGE_PATH={ {{wdt_home} }} \
44
44
WDT_HOME={ {{wdt_home} }} \
Original file line number Diff line number Diff line change 3
3
#
4
4
# Installing Java
5
5
6
- FROM os_update as jdk_build
6
+ FROM os_update AS jdk_build
7
7
{ {#buildArgs} }ARG { {{.} }}
8
8
{ {/buildArgs} }
9
9
LABEL com.oracle.weblogic.imagetool.buildid="{ {buildId} }"
Original file line number Diff line number Diff line change 3
3
#
4
4
# Installing Middleware
5
5
6
- FROM os_update as wls_build
6
+ FROM os_update AS wls_build
7
7
{ {#buildArgs} }ARG { {{.} }}
8
8
{ {/buildArgs} }
9
9
LABEL com.oracle.weblogic.imagetool.buildid="{ {buildId} }"
Original file line number Diff line number Diff line change 3
3
#
4
4
# Create WLS domain (or model)
5
5
6
- FROM { {{wdtBase} }} as wdt_build
6
+ FROM { {{wdtBase} }} AS wdt_build
7
7
{ {#buildArgs} }ARG { {{.} }}
8
8
{ {/buildArgs} }
9
9
LABEL com.oracle.weblogic.imagetool.buildid="{ {buildId} }"
You can’t perform that action at this time.
0 commit comments