Allows developers to build NPM projects without the need to install NodeJS and NPM.
3.0K
The NPM builder docker image allows developers to build NPM projects without the need to install NodeJS and NPM.
Run any npm command by running the image ufirtgroup/npm-builder.
docker run -it \
-e "USER_ID=$(id -u)" \
-v $PWD/frontend:/source \
-p "3000:3000" \
-p "3001:3001" \
ufirstgroup/npm-builder \
npm start
Set up your project as follows:
docker run -it \
-e "USER_ID=$(id -u)" \
-v $PWD/frontend:/source \
-p "3000:3000" \
-p "3001:3001" \
ufirstgroup/npm-builder \
$(basename $0) $@
Content type
Image
Digest
Size
244.7 MB
Last updated
about 10 years ago
docker pull ufirstgroup/npm-builder