From a9ed0f1e7be3b0acc4466586ec6477eeb6f6a721 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Tue, 8 Aug 2017 21:33:59 -0400 Subject: [PATCH] remove watchman Signed-off-by: Jess Frazelle --- watchman/Dockerfile | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 watchman/Dockerfile diff --git a/watchman/Dockerfile b/watchman/Dockerfile deleted file mode 100644 index 2b8a2e9..0000000 --- a/watchman/Dockerfile +++ /dev/null @@ -1,32 +0,0 @@ -FROM debian:sid -LABEL maintainer "Jessie Frazelle " - -RUN apt-get update && apt-get install -y \ - ca-certificates \ - --no-install-recommends \ - && rm -rf /var/lib/apt/lists/* - -ENV WATCHMAN_VERSION v4.8.0-rc1 - -RUN buildDeps=' \ - autoconf \ - automake \ - clang \ - git \ - libtool \ - make \ - pkg-config \ - ' \ - && set -x \ - && apt-get update && apt-get install -y $buildDeps --no-install-recommends \ - && rm -rf /var/lib/apt/lists/* \ - && git clone --depth 1 --branch "${WATCHMAN_VERSION}" https://github.com/facebook/watchman.git /usr/src/watchman \ - && cd /usr/src/watchman \ - && ./autogen.sh \ - && ./configure \ - && make \ - && make install \ - && rm -rf /usr/src/watchman \ - && apt-get purge -y --auto-remove $buildDeps - -ENTRYPOINT [ "watchman" ]