I want to wrtite DockerFile (from oracle-xe-11g) with copying and runing sql script.
How to correctly write a command to login sqlplus and execute sql file
written docker file
FROM sath89/oracle-xe-11g
USER root
RUN mkdir - p /home/test
RUN chown -R oracle:root /home/test
USER oracle
COPY ora.schema.sql /home/test
RUN ???????
written SQL script
CREATE USER test IDENTIFIED BY test1;
GRANT CREATE ANY SEQUENCE TO test;
....