diff --git a/OracleLinuxDevelopers/oraclelinux10/nodejs/24/Dockerfile b/OracleLinuxDevelopers/oraclelinux10/nodejs/24/Dockerfile new file mode 100644 index 0000000000..b6861a51bc --- /dev/null +++ b/OracleLinuxDevelopers/oraclelinux10/nodejs/24/Dockerfile @@ -0,0 +1,10 @@ +# Copyright (c) 2026 Oracle and/or its affiliates. +# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. + +FROM ghcr.io/oracle/oraclelinux:10 + +RUN dnf -y install nodejs24 nodejs-nodemon npm && \ + dnf clean all && \ + rm -rf /var/cache/dnf + +CMD ["/bin/node", "-v"]