Node.js & Grunt & Bower docker image for JavaScript-based development.
701
Node.js & Grunt & Bower docker image for JavaScript-based development.
This container allows you to run most Grunt and Bower commands without having to install them on the host system.
To run a Docker container
docker run -it --rm -v `pwd`:/data adriagalin/nodejs-bower-grunt
nodedocker run -it --rm -v `pwd`:/data adriagalin/nodejs-bower-grunt node
npmdocker run -it --rm -v `pwd`:/data adriagalin/nodejs-bower-grunt npm
bowerdocker run -it --rm -v `pwd`:/data adriagalin/nodejs-bower-grunt bower
gruntdocker run -it --rm -v `pwd`:/data adriagalin/nodejs-bower-grunt grunt
you could optionally pass -u option and other docker options:
docker run -it --rm -u $UID -v `pwd`:/data adriagalin/nodejs-bower-grunt grunt
Or create your own deployable docker container:
FROM adriagalin/nodejs-bower-grunt
ADD MyProgram /MyProgram
ADD run.sh /run.sh
ENTRYPOINT /run.sh
This Dockerfile is released under the MIT license, which should have accompanied the Dockerfile. Files and binaries contained inside the image may contain other Licenses.
During development, some roles in Ansible Galaxy/Github also inspired me:
thank you.
Content type
Image
Digest
Size
250.3 MB
Last updated
over 10 years ago
docker pull adriagalin/nodejs-bower-grunt