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:latest | |
RUN apt-get update && \ | |
apt-get -y install software-properties-common git-core build-essential automake unzip python-dev python-setuptools && \ | |
rm -rf /var/lib/apt/lists/* | |
RUN git clone https://github.com/facebook/watchman.git /tmp/watchman | |
WORKDIR /tmp/watchman | |
RUN ./autogen.sh | |
RUN ./configure |