diff --git a/docker/build_and_push.Dockerfile b/docker/build_and_push.Dockerfile index 3cfc134fb4ba..49749f243893 100644 --- a/docker/build_and_push.Dockerfile +++ b/docker/build_and_push.Dockerfile @@ -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 git -y \ + && apt-get install git curl -y \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ && useradd user -u 1000 -g 0 --no-create-home --home-dir /app/data diff --git a/docker/build_and_push_base.Dockerfile b/docker/build_and_push_base.Dockerfile index 4d40eb1d04fa..812559a30b34 100644 --- a/docker/build_and_push_base.Dockerfile +++ b/docker/build_and_push_base.Dockerfile @@ -73,7 +73,7 @@ FROM python:3.12.3-slim AS runtime RUN apt-get update \ && apt-get upgrade -y \ - && apt-get install git -y \ + && apt-get install git curl -y \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ && useradd user -u 1000 -g 0 --no-create-home --home-dir /app/data