vranjan25 commented on issue #20371:
URL: https://github.com/apache/superset/issues/20371#issuecomment-2103153911

   Add the below in Dockerfile
   
   # Install Oracle Instant Client
   RUN mkdir -p /opt/oracle \
       && wget --no-check-certificate --no-cookies --header "Cookie: 
oraclelicense=accept-securebackup-cookie" 
https://download.oracle.com/otn_software/linux/instantclient/214000/instantclient-basic-linux.x64-21.4.0.0.0dbru.zip
 \
       && unzip instantclient-basic-linux.x64-21.4.0.0.0dbru.zip -d /opt/oracle 
\
       && rm -f instantclient-basic-linux.x64-21.4.0.0.0dbru.zip \
       && apt-get update \
       && apt-get install -y libaio1 \
       && echo "/opt/oracle/instantclient_21_4" > 
/etc/ld.so.conf.d/oracle-instantclient.conf \
       && ldconfig
   
   
   Note: make sure you include wget & unzip package 
   
   RUN mkdir -p ${PYTHONPATH} superset/static requirements superset-frontend 
apache_superset.egg-info requirements \
       && useradd --user-group -d ${SUPERSET_HOME} -m --no-log-init --shell 
/bin/bash superset \
       && apt-get update -qq && apt-get install -yqq --no-install-recommends \
           build-essential \
           curl \
           default-libmysqlclient-dev \
           libsasl2-dev \
           libsasl2-modules-gssapi-mit \
           libpq-dev \
           libecpg-dev \
           libldap2-dev \
        **wget \
           unzip \**
       && touch superset/static/version_info.json \
       && chown -R superset:superset ./* \
       && rm -rf /var/lib/apt/lists/*
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org

Reply via email to