|
@@ -490,6 +490,7 @@ RUN set -xe; \
|
|
|
###########################################################################
|
|
|
|
|
|
ARG INSTALL_OCI8=false
|
|
|
+ARG ORACLE_INSTANT_CLIENT_MIRROR=https://github.com/diogomascarenha/oracle-instantclient/raw/master/
|
|
|
|
|
|
ENV LD_LIBRARY_PATH="/opt/oracle/instantclient_12_1"
|
|
|
ENV OCI_HOME="/opt/oracle/instantclient_12_1"
|
|
@@ -503,8 +504,8 @@ RUN if [ ${INSTALL_OCI8} = true ]; then \
|
|
|
# Install Oracle Instantclient
|
|
|
&& mkdir /opt/oracle \
|
|
|
&& cd /opt/oracle \
|
|
|
- && wget https://github.com/diogomascarenha/oracle-instantclient/raw/master/instantclient-basic-linux.x64-12.1.0.2.0.zip \
|
|
|
- && wget https://github.com/diogomascarenha/oracle-instantclient/raw/master/instantclient-sdk-linux.x64-12.1.0.2.0.zip \
|
|
|
+ && wget ${ORACLE_INSTANT_CLIENT_MIRROR}instantclient-basic-linux.x64-12.1.0.2.0.zip \
|
|
|
+ && wget ${ORACLE_INSTANT_CLIENT_MIRROR}instantclient-sdk-linux.x64-12.1.0.2.0.zip \
|
|
|
&& unzip /opt/oracle/instantclient-basic-linux.x64-12.1.0.2.0.zip -d /opt/oracle \
|
|
|
&& unzip /opt/oracle/instantclient-sdk-linux.x64-12.1.0.2.0.zip -d /opt/oracle \
|
|
|
&& ln -s /opt/oracle/instantclient_12_1/libclntsh.so.12.1 /opt/oracle/instantclient_12_1/libclntsh.so \
|