Unverified Commit e35e92e4 authored by Samruddhi Khandale's avatar Samruddhi Khandale Committed by GitHub

node: support latest as version option (#5)

parent ccaa08a4
......@@ -98,6 +98,8 @@ if [ "${NODE_VERSION}" = "none" ]; then
export NODE_VERSION=
elif [ "${NODE_VERSION}" = "lts" ]; then
export NODE_VERSION="lts/*"
elif [ "${NODE_VERSION}" = "latest" ]; then
export NODE_VERSION="node"
fi
# Create a symlink to the installed version for use in Dockerfile PATH statements
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment