You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should extend the cli container to use the latest LTS version of node/npm
# Use a stock Docksal image as the base
FROM docksal/cli:2-php7.4
# nvm/node/npm are only available in the docker user context
USER docker
# Install additional global npm dependencies
RUN set -e; \
# Initialize the user environment (this loads nvm).$HOME/.profile; \
# Install the necessary nodejs version
nvm install 14.16.1; \
nvm alias default 14.16.1; \
The text was updated successfully, but these errors were encountered:
judereid
changed the title
Force NVM to a fixed version
Force NVM to a fixed LTS version
Apr 8, 2021
We should extend the cli container to use the latest LTS version of node/npm
The text was updated successfully, but these errors were encountered: