Sign inSign up

katturaja/docker-nodejs-oracledb-instantclient

By katturaja

•Updated over 7 years ago

Nodejs, Oracledb instantclient library built as docker image. The image used to build your apps.

Image
2

6.1K

katturaja/docker-nodejs-oracledb-instantclient repository overview

⁠Docker NodeJs + Oracledb instantclient base image

Nodejs with oracledb instantclient library used to build the docker image.

Extend the docker image as a base image to build your nodejs of oracledb application.

Supported tags and respective Dockerfile links

Nodejs 10.15.3-slim⁠ + node-oracledb⁠ supported from 2.3.0.

⁠Usage to build your apps

FROM katturaja/docker-nodejs-oracledb-instantclient:10.15.3-slim
# Create app base directory
RUN mkdir -p /src

# Specify the "working directory" for the rest of the Dockerfile
WORKDIR /src

COPY . /src

# clean
RUN npm cache clean -f \
&& npm install --only=prod

EXPOSE 3000
CMD ["node", "server.js"]

Tag summary

Content type

Image

Digest

Size

143.4 MB

Last updated

over 7 years ago

docker pull katturaja/docker-nodejs-oracledb-instantclient