Fix: add missing curl to dockerfile langflow-ai/langflow-helm-charts#40 (#6971)

* add missing curl and remove empty continuation line

* add missing curl

* Update docker/build_and_push.Dockerfile

Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>

* Update docker/build_and_push_base.Dockerfile

Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>

---------

Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>
This commit is contained in:
Yashraj Dighe 2025-04-17 19:46:21 +05:30 committed by GitHub
commit 6dccb22e38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View file

@ -30,7 +30,6 @@ RUN apt-get update \
npm \
# gcc
gcc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
@ -69,7 +68,7 @@ FROM python:3.12.3-slim AS runtime
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y git libpq5 \
&& apt-get install -y git libpq5 curl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& useradd user -u 1000 -g 0 --no-create-home --home-dir /app/data

View file

@ -73,7 +73,7 @@ FROM python:3.12.3-slim AS runtime
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y git libpq5 \
&& apt-get install -y git libpq5 curl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& useradd user -u 1000 -g 0 --no-create-home --home-dir /app/data