docker: add curl to the image (#2124)

This commit is contained in:
Nicolò Boschi 2024-06-10 14:35:59 +02:00 committed by GitHub
commit 395c2d7372
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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