This repository was archived by the owner on May 27, 2025. It is now read-only.
This repository was archived by the owner on May 27, 2025. It is now read-only.
The docker/dev-environments-javascript:stable-1
image is outdated #148
Open
Description
Tell us about your request
The docker/dev-environments-javascript:stable-1
image is outdated. Please update and upgrade node/npm to the latest LTS version.
Which service(s) is this request for?
Docker Dev Environments
Tell us about the problem you're trying to solve. What are you trying to do, and why is it hard?
Many of the project need Node.js 18 and above. The latest image of the docker/dev-environments-javascript
is outdated.
Are you currently working around the issue?
I have to install the latest node version inside the docker container after the container has been started everytime.
export YARNKEY=yarn-keyring.gpg
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo gpg --dearmour -o /usr/share/keyrings/$YARNKEY
echo "deb [signed-by=/usr/share/keyrings/$YARNKEY] https://dl.yarnpkg.com/debian stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
gpg --refresh-keys 23E7166788B63E1E
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt-get install -y nodejs
mv /usr/local/bin/node /usr/local/bin/node.16
Additional context
N/A