diff --git a/Dockerfile b/Dockerfile index 1fc351a..760a9d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:14.15.4-alpine3.12 +FROM node:14.16.1-alpine3.13 # Contains only necessary libs from oracle instant client: # "*/libociei.so */libons.so */libnnz12.so */libclntshcore.so.12.1 */libclntsh.so.12.1" @@ -7,7 +7,7 @@ ENV CLIENT_FILENAME instantclientlibs-linux.x64-12.1.0.1.0.tar.gz COPY ${CLIENT_FILENAME} /usr/lib # libaio and libnsl are necessary for oracledb -RUN echo "https://dl-cdn.alpinelinux.org/alpine/v3.12/main" > /etc/apk/repositories \ +RUN echo "https://dl-cdn.alpinelinux.org/alpine/v3.13/main" > /etc/apk/repositories \ && echo "https://dl-cdn.alpinelinux.org/alpine/latest-stable/community" >> /etc/apk/repositories \ && apk add --no-cache libaio libnsl \ && ln -s /usr/lib/libnsl.so.2 /usr/lib/libnsl.so.1 \ diff --git a/README.md b/README.md index befcc87..5bea7da 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,14 @@ Simple and lightweight Alpine Linux build with NodeJS and Oracle Instant Client ## Recommended Tags -* [```14.15.4-alpine3.12```, ```latest```](https://github.com/dnorio/oracle-node-alpine/commit/c3b09aa64a3a6cac4518de8913d1ee5f362f137d) (2021-02): NodeJS 14.15.4 and Alpine Linux 3.12. Suitable for use with npm package oracledb@5.0.0; +* [```14.16.1-alpine3.13```, ```latest```](https://github.com/dnorio/oracle-node-alpine/commit/c3b09aa64a3a6cac4518de8913d1ee5f362f137d) (2021-02): NodeJS 14.16.1 and Alpine Linux 3.13. Suitable for use with npm package oracledb@5.0.0; * [```12.20.1-alpine3.12```](https://github.com/dnorio/oracle-node-alpine/commit/10f7d1d5201268ba1db827e30947a68530762680) (2021-02): NodeJS 12.20.0 and Alpine Linux 3.12. Suitable for use with npm package oracledb@4.2.0 and oracledb@5.0.0; ## Other Available Tags +* [```14.15.4-alpine3.12```, ```latest```](https://github.com/dnorio/oracle-node-alpine/commit/c3b09aa64a3a6cac4518de8913d1ee5f362f137d) (2021-02): NodeJS 14.15.4 and Alpine Linux 3.12. Suitable for use with npm package oracledb@5.0.0; + * [```10.23.2-alpine3.11```](https://github.com/dnorio/oracle-node-alpine/commit/6a68bd6c213289eaac13cae6bce19aa642cc2d47) (2021-02): NodeJS 10.23.2 and Alpine Linux 3.11. Suitable for use with npm package oracledb@3.1.2; * [```12.20.0-alpine3.12```](https://github.com/dnorio/oracle-node-alpine/commit/f18a6fc95fb76265ac249509f915aab8d2c92ae9) (2020-12): NodeJS 12.20.0 and Alpine Linux 3.12. Suitable for use with npm package oracledb@4.2.0 and oracledb@5.0.0;