From dd744ea6071653bc8f017827c4e44570014f4548 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Mon, 6 May 2024 13:39:30 +0100 Subject: [PATCH] [TMP] Disable installing sqlplus as it gives errors --- docs/using/recipe_code/oracledb.dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/using/recipe_code/oracledb.dockerfile b/docs/using/recipe_code/oracledb.dockerfile index e03444c153..8e66f8cb48 100644 --- a/docs/using/recipe_code/oracledb.dockerfile +++ b/docs/using/recipe_code/oracledb.dockerfile @@ -20,10 +20,11 @@ ARG INSTANTCLIENT_URL=https://download.oracle.com/otn_software/linux/instantclie # See: https://www.oracle.com/es/database/technologies/instant-client/linux-x86-64-downloads.html RUN mkdir "/opt/oracle" WORKDIR "/opt/oracle" +# alien doesn't work well with sqlplus, so skipping it for now RUN wget --progress=dot:giga "${INSTANTCLIENT_URL}/oracle-instantclient-basiclite-${INSTANTCLIENT_BIN_SUFFIX}" && \ alien --install --scripts "oracle-instantclient-basiclite-${INSTANTCLIENT_BIN_SUFFIX}" && \ wget --progress=dot:giga "${INSTANTCLIENT_URL}/oracle-instantclient-sqlplus-${INSTANTCLIENT_BIN_SUFFIX}" && \ - alien --install --scripts "oracle-instantclient-sqlplus-${INSTANTCLIENT_BIN_SUFFIX}" && \ + # alien --install --scripts "oracle-instantclient-sqlplus-${INSTANTCLIENT_BIN_SUFFIX}" && \ wget --progress=dot:giga "${INSTANTCLIENT_URL}/oracle-instantclient-tools-${INSTANTCLIENT_BIN_SUFFIX}" && \ alien --install --scripts "oracle-instantclient-tools-${INSTANTCLIENT_BIN_SUFFIX}" && \ wget --progress=dot:giga "${INSTANTCLIENT_URL}/oracle-instantclient-jdbc-${INSTANTCLIENT_BIN_SUFFIX}" && \