Add support for ORACLE databse with SQLAlchemy
To enable ORACLE support there are some necessary changes
- switch from alpine to debian based docker image as oracle instant client requires glibc instead of musl
- add ORACLE instant client binaries and cx-oracle package
- switch
jsonb
tosqlalchemy_jsonfield
as generic type - switch timestamp type to
oracle.TIMESTAMP
for millisecond support (it is also compatible to postgres)