Skip to content

Commit dd744ea

Browse files
committed
[TMP] Disable installing sqlplus as it gives errors
1 parent 41ded6e commit dd744ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/using/recipe_code/oracledb.dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ ARG INSTANTCLIENT_URL=https://download.oracle.com/otn_software/linux/instantclie
2020
# See: https://www.oracle.com/es/database/technologies/instant-client/linux-x86-64-downloads.html
2121
RUN mkdir "/opt/oracle"
2222
WORKDIR "/opt/oracle"
23+
# alien doesn't work well with sqlplus, so skipping it for now
2324
RUN wget --progress=dot:giga "${INSTANTCLIENT_URL}/oracle-instantclient-basiclite-${INSTANTCLIENT_BIN_SUFFIX}" && \
2425
alien --install --scripts "oracle-instantclient-basiclite-${INSTANTCLIENT_BIN_SUFFIX}" && \
2526
wget --progress=dot:giga "${INSTANTCLIENT_URL}/oracle-instantclient-sqlplus-${INSTANTCLIENT_BIN_SUFFIX}" && \
26-
alien --install --scripts "oracle-instantclient-sqlplus-${INSTANTCLIENT_BIN_SUFFIX}" && \
27+
# alien --install --scripts "oracle-instantclient-sqlplus-${INSTANTCLIENT_BIN_SUFFIX}" && \
2728
wget --progress=dot:giga "${INSTANTCLIENT_URL}/oracle-instantclient-tools-${INSTANTCLIENT_BIN_SUFFIX}" && \
2829
alien --install --scripts "oracle-instantclient-tools-${INSTANTCLIENT_BIN_SUFFIX}" && \
2930
wget --progress=dot:giga "${INSTANTCLIENT_URL}/oracle-instantclient-jdbc-${INSTANTCLIENT_BIN_SUFFIX}" && \

0 commit comments

Comments
 (0)