File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ RUN rbenv rehash
80
80
# Oracle stuff
81
81
RUN mkdir -p /opt/oracle
82
82
RUN mkdir -p /opt/oracle_fdw
83
- COPY ./vendor/*.rpm /opt/oracle/
83
+ COPY ./vendor/*.deb /opt/oracle/
84
84
COPY ./vendor/oracle_fdw/* /opt/oracle_fdw/
85
85
86
86
ENV ORACLE_HOME /usr/lib/oracle/12.1/client64
@@ -89,9 +89,9 @@ ENV NLS_LANG American_America.UTF8
89
89
ENV PATH $ORACLE_HOME/bin:$PATH
90
90
91
91
# Install Oracle Client
92
- RUN alien -i /opt/oracle/oracle-instantclient12.1-basic-12 .1.0.2.0-1.x86_64.rpm \
93
- && alien -i /opt/oracle/oracle-instantclient12.1-devel-12 .1.0.2.0-1.x86_64.rpm \
94
- && alien -i /opt/oracle/oracle-instantclient12.1-sqlplus-12 .1.0.2.0-1.x86_64.rpm
92
+ RUN dpkg -i /opt/oracle/oracle-instantclient12.1-basic_12 .1.0.2.0-2_amd64.deb \
93
+ && dpkg -i /opt/oracle/oracle-instantclient12.1-devel_12 .1.0.2.0-2_amd64.deb \
94
+ && dpkg -i /opt/oracle/oracle-instantclient12.1-sqlplus_12 .1.0.2.0-2_amd64.deb
95
95
96
96
RUN cd /opt/oracle_fdw && make && make install
97
97
Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ ENV NLS_LANG American_America.UTF8
40
40
ENV PATH $ORACLE_HOME/bin:$PATH
41
41
42
42
# Install Oracle Client
43
- COPY ./vendor/*.rpm /opt/oracle/
43
+ COPY ./vendor/*.deb /opt/oracle/
44
44
45
- RUN alien -i /opt/oracle/oracle-instantclient12.1-basic-12 .1.0.2.0-1.x86_64.rpm \
46
- && alien -i /opt/oracle/oracle-instantclient12.1-devel-12 .1.0.2.0-1.x86_64.rpm \
47
- && alien -i /opt/oracle/oracle-instantclient12.1-sqlplus-12 .1.0.2.0-1.x86_64.rpm
45
+ RUN dpkg -i /opt/oracle/oracle-instantclient12.1-basic_12 .1.0.2.0-2_amd64.deb \
46
+ && dpkg -i /opt/oracle/oracle-instantclient12.1-devel_12 .1.0.2.0-2_amd64.deb \
47
+ && dpkg -i /opt/oracle/oracle-instantclient12.1-sqlplus_12 .1.0.2.0-2_amd64.deb
You can’t perform that action at this time.
0 commit comments