We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c406aed commit 66fd93eCopy full SHA for 66fd93e
Dockerfile
@@ -8,13 +8,11 @@ ADD init.ora /
8
ADD initXETemp.ora /
9
10
# Prepare to install Oracle
11
-RUN apt-get update && apt-get install -y libaio1 net-tools bc wget && apt-get clean && rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/*
12
-RUN ln -s /usr/bin/awk /bin/awk
13
-RUN mkdir /var/lock/subsys
14
-RUN chmod 755 /sbin/chkconfig
15
-
16
-# Install Oracle
17
-RUN /oracle-install.sh
+RUN apt-get update && apt-get install -y libaio1 net-tools bc wget && apt-get clean && rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* &&\
+ln -s /usr/bin/awk /bin/awk &&\
+mkdir /var/lock/subsys &&\
+chmod 755 /sbin/chkconfig &&\
+/oracle-install.sh
18
19
EXPOSE 1521
20
EXPOSE 8080
0 commit comments