From 18d08413ce956b52f0ab06d9f56d0481e5e792fc Mon Sep 17 00:00:00 2001 From: Jordan Frazier <122494242+jordanrfrazier@users.noreply.github.com> Date: Thu, 7 Nov 2024 12:29:26 -0800 Subject: [PATCH] build: add curl to ep image (#4456) Add curl to ep image --- docker/build_and_push_ep.Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/build_and_push_ep.Dockerfile b/docker/build_and_push_ep.Dockerfile index 01801e2ff648..1c5f94ed2441 100644 --- a/docker/build_and_push_ep.Dockerfile +++ b/docker/build_and_push_ep.Dockerfile @@ -67,6 +67,9 @@ FROM python:3.12.3-slim AS runtime RUN useradd user -u 1000 -g 0 --no-create-home --home-dir /app/data COPY --from=builder --chown=1000 /app/.venv /app/.venv +# curl is required for langflow health checks +RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* + # Place executables in the environment at the front of the path ENV PATH="/app/.venv/bin:$PATH"