Skip to content

Commit

Permalink
docker: add curl to the image (langflow-ai#2124)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoloboschi authored Jun 10, 2024
1 parent dbe8188 commit 395c2d7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker/build_and_push.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ RUN $POETRY_HOME/bin/poetry lock --no-update \
################################
FROM python:3.12-slim as runtime

RUN apt-get -y update \
&& apt-get install --no-install-recommends -y \
curl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

LABEL org.opencontainers.image.title=langflow
LABEL org.opencontainers.image.authors=['Langflow']
LABEL org.opencontainers.image.licenses=MIT
Expand Down

0 comments on commit 395c2d7

Please sign in to comment.