From 996fae1248fcdd583a6a85be1f753d09acce9e25 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Mon, 6 May 2024 13:51:46 +0100 Subject: [PATCH] Update oracledb client version --- docs/using/recipe_code/oracledb.dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/using/recipe_code/oracledb.dockerfile b/docs/using/recipe_code/oracledb.dockerfile index 8e66f8cb48..8846fe6c21 100644 --- a/docs/using/recipe_code/oracledb.dockerfile +++ b/docs/using/recipe_code/oracledb.dockerfile @@ -11,9 +11,9 @@ RUN apt-get update --yes && \ apt-get clean && rm -rf /var/lib/apt/lists/* # Oracle -ARG INSTANTCLIENT_MAJOR_VERSION=21 -ARG INSTANTCLIENT_BIN_SUFFIX=${INSTANTCLIENT_MAJOR_VERSION}.11.0.0.0-1.el8.x86_64.rpm -ARG INSTANTCLIENT_URL=https://download.oracle.com/otn_software/linux/instantclient/2111000 +ARG INSTANTCLIENT_MAJOR_VERSION=23 +ARG INSTANTCLIENT_BIN_SUFFIX=${INSTANTCLIENT_MAJOR_VERSION}.4.0.24.05-1.el9.x86_64.rpm +ARG INSTANTCLIENT_URL=https://download.oracle.com/otn_software/linux/instantclient/2340000 # Then install Oracle SQL Instant client, SQL+Plus, tools, and JDBC. # Note: You may need to change the URL to a newer version.