Skip to content

Instantly share code, notes, and snippets.

@moshiurse
Last active August 28, 2023 12:09
Show Gist options
  • Save moshiurse/61079acfb3f86a141d724d0fb2a20dc4 to your computer and use it in GitHub Desktop.
Save moshiurse/61079acfb3f86a141d724d0fb2a20dc4 to your computer and use it in GitHub Desktop.
Customized docker image for Shopify development

Installed software

Curl

apt install curl

curl --version

Nodejs with Nvm

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash

export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"

source ~/.bashrc

nvm -v

nvm ls-remote

nvm install vX.Y.Z //20.5.1

nvm use vX.Y.Z

Now check node version using node -v

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment