Skip to content

Commit

Permalink
build: add curl to ep image (langflow-ai#4456)
Browse files Browse the repository at this point in the history
Add curl to ep image
  • Loading branch information
jordanrfrazier authored Nov 7, 2024
1 parent 0169821 commit 18d0841
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker/build_and_push_ep.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 18d0841

Please sign in to comment.