Skip to content

Commit 908b129

Browse files
committed
fix lint errors
1 parent 570f6fd commit 908b129

File tree

1 file changed

+2
-1
lines changed
  • OracleFMWInfrastructure/dockerfiles/14.1.2.0

1 file changed

+2
-1
lines changed

OracleFMWInfrastructure/dockerfiles/14.1.2.0/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ RUN chown oracle:oracle -R /u01
5656
# Install
5757
# ------------------------------------------------------------
5858
USER oracle
59-
RUN cd /u01 && $JAVA_HOME/bin/jar xf /u01/$FMW_PKG && cd - && \
59+
WORKDIR /u01
60+
RUN $JAVA_HOME/bin/jar xf /u01/$FMW_PKG && cd - && \
6061
$JAVA_HOME/bin/java -jar /u01/$FMW_JAR -silent -responseFile /u01/install.file -invPtrLoc /u01/oraInst.loc -jreLoc $JAVA_HOME -ignoreSysPrereqs -force -novalidation ORACLE_HOME=$ORACLE_HOME INSTALL_TYPE="WebLogic Server" && \
6162
rm /u01/$FMW_JAR /u01/$FMW_PKG /u01/install.file && \
6263
rm -rf /u01/oracle/cfgtoollogs

0 commit comments

Comments
 (0)