mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* oracledb initial commit - Added oracledb package * Implemented connection and operations * Working on oracle db integration * Implemented query & bulk operations * Fixed initial client reintialization problem * Added custom client library path option * Added oracle client library installation steps to dev docker file * Testing changed docker setup on cloud * Testing heroku app.json * Removed unwanted scripts from dockerfiles * Updated field label * update oracledb client lib for ec2 * update package-lock * refactoring code * Updated docs * Resolved some lint errors Co-authored-by: Akshay Sasidharan <akshaysasidharan93@gmail.com>
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
# pull official base image
|
|
FROM node:14.17.3-alpine
|
|
RUN apk add postgresql-client
|
|
|
|
# Install Instantclient Basic Light Oracle and Dependencies
|
|
RUN apk --no-cache add libaio libnsl libc6-compat curl && \
|
|
cd /tmp && \
|
|
curl -o instantclient-basiclite.zip https://download.oracle.com/otn_software/linux/instantclient/instantclient-basiclite-linuxx64.zip -SL && \
|
|
unzip instantclient-basiclite.zip && \
|
|
mv instantclient*/ /usr/lib/instantclient && \
|
|
rm instantclient-basiclite.zip && \
|
|
ln -s /usr/lib/instantclient/libclntsh.so.19.1 /usr/lib/libclntsh.so && \
|
|
ln -s /usr/lib/instantclient/libocci.so.19.1 /usr/lib/libocci.so && \
|
|
ln -s /lib/libc.so.6 /usr/lib/libresolv.so.2 && \
|
|
ln -s /lib64/ld-linux-x86-64.so.2 /usr/lib/ld-linux-x86-64.so.2
|
|
|
|
ENV LD_LIBRARY_PATH /usr/lib/instantclient
|
|
|
|
ENV NODE_ENV=development
|
|
ENV NODE_OPTIONS="--max-old-space-size=4096"
|
|
|
|
RUN npm i -g npm@7.20.0
|
|
RUN mkdir -p /app
|
|
WORKDIR /app
|
|
|
|
COPY ./package.json ./package.json
|
|
|
|
# install app dependencies
|
|
COPY ./server/package.json ./server/package-lock.json ./server/
|
|
RUN npm --prefix server install
|
|
COPY ./server/ ./server/
|
|
|
|
ENTRYPOINT ["./server/entrypoint.sh"]
|