forked from oracle/docker-images
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new OL7 Dockerfiles for Node.js 16, cleanup and fixes (oracle#2219)
- Loading branch information
1 parent
c1a9ab9
commit ebf452b
Showing
7 changed files
with
26 additions
and
22 deletions.
There are no files selected for viewing
13 changes: 0 additions & 13 deletions
13
OracleLinuxDevelopers/oraclelinux7/nodejs/10-oracledb/Dockerfile
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
OracleLinuxDevelopers/oraclelinux7/nodejs/12-oracledb/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
OracleLinuxDevelopers/oraclelinux7/nodejs/14-oracledb/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
OracleLinuxDevelopers/oraclelinux7/nodejs/16-oracledb/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Copyright (c) 2022 Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
FROM oraclelinux:7-slim | ||
|
||
RUN yum -y install oracle-nodejs-release-el7 oracle-instantclient-release-el7 && \ | ||
yum-config-manager --disable ol7_developer_nodejs\* && \ | ||
yum-config-manager --enable ol7_developer_nodejs16 && \ | ||
yum -y install nodejs node-oracledb-node16 && \ | ||
rm -rf /var/cache/yum/* | ||
|
||
ENV NODE_PATH=/usr/lib/node_modules/ | ||
|
||
CMD ["/bin/node", "-v"] |
6 changes: 3 additions & 3 deletions
6
...elopers/oraclelinux7/nodejs/10/Dockerfile → ...elopers/oraclelinux7/nodejs/16/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters