Skip to content

Instantly share code, notes, and snippets.

@vpalmisano
Last active May 9, 2017 08:29
Show Gist options
  • Save vpalmisano/1852911421925235ae6c5b7100c90e64 to your computer and use it in GitHub Desktop.
Save vpalmisano/1852911421925235ae6c5b7100c90e64 to your computer and use it in GitHub Desktop.
Bower install with Docker
#!/bin/sh
docker run --rm -it -v $PWD:/workdir node:latest bash -c "cd /workdir; npm install -g bower; bower --allow-root install"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment