The dockerfile commands fail on this step on Windows 7 (Docker Toolbox - Docker Quickstart Terminal).
Line 60:
RUN /u01/oracle/wlst /u01/oracle/create-wls-domain.py
/bin/sh: /u01/oracle/wlst: /bin/sh^M: bad interpreter: No such file or directory
The command '/bin/sh -c /u01/oracle/wlst /u01/oracle/create-wls-domain.py' returned a non-zero code: 126
It seems that the WLST command is not compatible with either Docker Toolbox or Windows 7.
Full text of build.sh output attached.
UPDATE: solved the issue by changing the reference location of the wlst utility in the dockerfile:
RUN /u01/oracle/oracle_common/common/bin/wlst.sh /u01/oracle/create-wls-domain.py && \
This change ran successfully for me.
Most helpful comment
UPDATE: solved the issue by changing the reference location of the wlst utility in the dockerfile:
RUN /u01/oracle/oracle_common/common/bin/wlst.sh /u01/oracle/create-wls-domain.py && \This change ran successfully for me.