Created
July 29, 2016 16:48
-
-
Save brancusi/ba676d6cb8944d04458c0bcc24f6c42b to your computer and use it in GitHub Desktop.
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
| FROM node:6.3.1 | |
| RUN \ | |
| apt-get update && apt-get install -y \ | |
| python-setuptools \ | |
| python-dev \ | |
| autoconf \ | |
| automake \ | |
| curl \ | |
| ca-certificates \ | |
| git \ | |
| --no-install-recommends \ | |
| && rm -rf /var/lib/apt/lists/* | |
| # install watchman | |
| RUN \ | |
| git clone https://github.com/facebook/watchman.git && \ | |
| cd /watchman && \ | |
| git checkout v3.5.0 && \ | |
| ./autogen.sh && \ | |
| ./configure && \ | |
| make && \ | |
| make install | |
| RUN \ | |
| npm install -g [email protected] && \ | |
| npm install -g [email protected] && \ | |
| npm install -g [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment