I'm trying to set an Oracle environment variable inside the container.
I believe it is not running, because the files are not available on the OS.
Could anyone help?
Thank you so much
FROM node:lts-alpine
RUN mkdir -p /usr/src/app
COPY ./ /usr/src/app
WORKDIR /usr/src/app
RUN export LD_LIBRARY_PATH=/usr/src/app/instantclient_21_5:$LD_LIBRARY_PATH
CMD [ \"npm\", \"run\", \"start\" ]
When running the bash container. I try to run commands from the environment variable. Unsuccessfully.