Skip to content

Instantly share code, notes, and snippets.

@artemgordinskiy
Created December 11, 2015 14:00
Show Gist options
  • Save artemgordinskiy/b79ea473e8bc6f67943b to your computer and use it in GitHub Desktop.
Save artemgordinskiy/b79ea473e8bc6f67943b to your computer and use it in GitHub Desktop.
Run Node/NPM in a Docker container
# For example, run "npm install"
docker run -v "$PWD":/usr/src/app -w /usr/src/app node:4 npm install
# This command creates a container (downloading one first if you don't have it locally), runs the command in a current directory and quits the container
# Great Success!
@MkLHX
Copy link

MkLHX commented Mar 22, 2021

Hi there!
There a way to store in VSCode the command line syntaxe to run npm run build from docker container?

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