File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
- FROM ubuntu:14.04.1
1
+ FROM ubuntu:14.04.2
2
2
3
3
MAINTAINER Maksym Bilenko <
[email protected] >
4
4
5
5
# get rid of the message: "debconf: unable to initialize frontend: Dialog"
6
6
ENV DEBIAN_FRONTEND noninteractive
7
7
8
- # see issue #1
9
- ENV ORACLE_HOME /u01/app/oracle/product/11.2.0/xe
10
- ENV PATH $ORACLE_HOME/bin:$PATH
11
- ENV ORACLE_SID=XE
12
-
13
8
ADD chkconfig /sbin/chkconfig
14
9
ADD oracle-install.sh /oracle-install.sh
15
10
ADD init.ora /
16
11
ADD initXETemp.ora /
17
12
18
13
# Prepare to install Oracle
19
- RUN apt-get update && apt-get install -y -q libaio1 net-tools bc wget && apt-get clean && rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* &&\
14
+ RUN apt-get update && apt-get install -y -q libaio1 net-tools bc curl && \
15
+ apt-get clean && \
16
+ rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* &&\
20
17
ln -s /usr/bin/awk /bin/awk &&\
21
18
mkdir /var/lock/subsys &&\
22
19
chmod 755 /sbin/chkconfig &&\
23
20
/oracle-install.sh
24
21
22
+ # see issue #1
23
+ ENV ORACLE_HOME /u01/app/oracle/product/11.2.0/xe
24
+ ENV PATH $ORACLE_HOME/bin:$PATH
25
+ ENV ORACLE_SID=XE
26
+
25
27
EXPOSE 1521
26
28
EXPOSE 8080
27
29
VOLUME ["/u01/app/oracle" ]
You can’t perform that action at this time.
0 commit comments