From 392feb6a06fe8a321a707bdd853eeccef0d9dc0e Mon Sep 17 00:00:00 2001 From: Mark Murnane Date: Wed, 1 May 2024 23:14:28 -0400 Subject: [PATCH] Linking healthcheck to new location --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 48c57a7..da68880 100644 --- a/Dockerfile +++ b/Dockerfile @@ -69,6 +69,8 @@ RUN curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux- # required for python-prctl RUN apt-get update && apt-get install -y libcap-dev && rm -rf /var/lib/apt/lists/* +RUN ln -s /app/plugins/uber/healthcheck.sh /app/healthcheck.sh + ADD . /app/ RUN pip3 install virtualenv \ && virtualenv --always-copy /app/env \