user@host $ mkdir node-arch && cd node-arch
user@host $ vim Dockerfile
FROM ubuntu:20.04
RUN apt update && apt install -y vim git libaio1 curl build-essential gettext-base
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
RUN apt install nodejs
$ docker build -t node-arch ./
$ docker run -ti --rm node-arch bash
# mkdir asdf && cd asdf
# npm i oracle/node-oracledb#v4.0.1
# node -e "console.log(require('oracledb'))"
OracleDb { queueTimeout: 60000, Promise: [Function: Promise] }