Docker image to be used for building a container ready with Oracle instant client binaries and all necessary environment variables needed to use the primary Node.js Oracle Database driver libraries:
Within your Dockerfile:
FROM collinestes/docker-node-oracle:{VERSION}
Specify the Node.js version you would like to use in the above {VERSION}. Check the different branches available on this repo to see available versions.
If you would like to use a version that is currently not a branch of this repo, submit a PR with the updated Dockerfile with the edit too:
FROM node:{VERSION}
Using "latest" (FROM collinestes/docker-node-oracle) as the version will use "FROM NODE:8" as it's base image. It is recommended that you use a specific version (X.X.X) but if you only want the latest version of Node 8.X.X then latest will work.