Skip to content

Commit

Permalink
Updating Oracle Client Install guide
Browse files Browse the repository at this point in the history
  • Loading branch information
s7clarke10 authored Aug 24, 2023
1 parent 9a25f1d commit f24e04c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ Before you can use tap-oracle, you need to download and install Oracle Client so
The following script is an Example for running this tap in a Docker Container and it a snippet of code from a `Dockerfile`. An equivalent setup can be done as a one-off in a Linux Server by way of example with appropriate environment variables set in a .bash_profile or appropriate shell for your environment.

```shell
# For more details on the Oracle CX_Oracle library refer to
# https://cx-oracle.readthedocs.io/en/latest/
# Install the libaio1 library for the Oracle Client, unzip
RUN apt-get update \
&& apt-get install -y unzip libaio1 \
&& apt-get clean \
&& find /var/cache/apt/archives /var/lib/apt/lists -not -name lock -type f -delete

# Install the Oracle Client
RUN mkdir /opt/oracle \
&& cd ~ \
Expand Down

0 comments on commit f24e04c

Please sign in to comment.