mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
add oracle client in dockerfile
This commit is contained in:
parent
993f91530d
commit
e13f3ec49c
@ -8,6 +8,7 @@ RUN dnf -y --refresh install \
|
||||
ccache \
|
||||
clang \
|
||||
clazy \
|
||||
curl \
|
||||
exiv2-devel \
|
||||
expat-devel \
|
||||
fcgi-devel \
|
||||
@ -99,3 +100,15 @@ RUN cd /usr/src \
|
||||
&& qmake6 src/qscintilla.pro \
|
||||
&& make -j4 \
|
||||
&& make install
|
||||
|
||||
# Oracle : client side
|
||||
RUN curl https://download.oracle.com/otn_software/linux/instantclient/199000/instantclient-basic-linux.x64-19.9.0.0.0dbru.zip > instantclient-basic-linux.x64-19.9.0.0.0dbru.zip
|
||||
RUN curl https://download.oracle.com/otn_software/linux/instantclient/199000/instantclient-sdk-linux.x64-19.9.0.0.0dbru.zip > instantclient-sdk-linux.x64-19.9.0.0.0dbru.zip
|
||||
RUN curl https://download.oracle.com/otn_software/linux/instantclient/199000/instantclient-sqlplus-linux.x64-19.9.0.0.0dbru.zip > instantclient-sqlplus-linux.x64-19.9.0.0.0dbru.zip
|
||||
|
||||
RUN unzip instantclient-basic-linux.x64-19.9.0.0.0dbru.zip
|
||||
RUN unzip instantclient-sdk-linux.x64-19.9.0.0.0dbru.zip
|
||||
RUN unzip instantclient-sqlplus-linux.x64-19.9.0.0.0dbru.zip
|
||||
|
||||
ENV PATH="/instantclient_19_9:${PATH}"
|
||||
ENV LD_LIBRARY_PATH="/instantclient_19_9:${LD_LIBRARY_PATH}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user