From c4e8342db4f80196169667da780c72e7664aed35 Mon Sep 17 00:00:00 2001 From: Irtaza Akram Date: Thu, 23 Nov 2023 12:18:07 +0500 Subject: [PATCH] fix: update watchman version --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 052a1d9e4..a0a2980ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,11 +44,11 @@ EXPOSE 18150 RUN useradd -m --shell /bin/false app # Install watchman -RUN wget https://github.com/facebook/watchman/releases/download/v2020.08.17.00/watchman-v2020.08.17.00-linux.zip -RUN unzip watchman-v2020.08.17.00-linux.zip +RUN wget https://github.com/facebook/watchman/releases/download/v2023.11.20.00/watchman-v2023.11.20.00-linux.zip +RUN unzip watchman-v2023.11.20.00-linux.zip RUN mkdir -p /usr/local/{bin,lib} /usr/local/var/run/watchman -RUN cp watchman-v2020.08.17.00-linux/bin/* /usr/local/bin -RUN cp watchman-v2020.08.17.00-linux/lib/* /usr/local/lib +RUN cp watchman-v2023.11.20.00-linux/bin/* /usr/local/bin +RUN cp watchman-v2023.11.20.00-linux/lib/* /usr/local/lib RUN chmod 755 /usr/local/bin/watchman RUN chmod 2777 /usr/local/var/run/watchman