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:
parent
641de6146b
commit
6dccb22e38
2 changed files with 2 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue