Created
December 11, 2015 14:00
-
-
Save artemgordinskiy/b79ea473e8bc6f67943b to your computer and use it in GitHub Desktop.
Run Node/NPM in a Docker container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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! |
@clrmahieu you only have to replace the c:\path_to_app with the full path for your app root folder, usually it's your current path where you have your package.json file.
On MacOS/Linux with NodeJS 10 LTS:
docker run --user $(id -u):$(id -g) -v $PWD:/app -v $PWD/.npm:/.npm -v $PWD/.config:/.config -w /app node:10.12.0-alpine npm install
This creates 2 folders .npm
and .config
within the current project's directory. I would avoid this since you can easily include them in the next commits by mistake.
A better alternative is to mount these folders from your user's home directory:
docker run --user $(id -u):$(id -g) -v $PWD:/app -v $HOME/.npm:/.npm -v $HOME/.config:/.config -w /app node:10.12.0-alpine npm install
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
Hello, I'm new to Docker and lost in your instructions...
What are we supposed to put instead of the
c:\path_to_app
and the/usr/src/app
expressions ?Thanks for the help !