Skip to content

Instantly share code, notes, and snippets.

@brancusi
Created July 29, 2016 16:48
Show Gist options
  • Select an option

  • Save brancusi/ba676d6cb8944d04458c0bcc24f6c42b to your computer and use it in GitHub Desktop.

Select an option

Save brancusi/ba676d6cb8944d04458c0bcc24f6c42b to your computer and use it in GitHub Desktop.
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