From 1846dab68b5cf7d3aaacb35ed0f2ccf4ed0cb8dd Mon Sep 17 00:00:00 2001 From: tarunpandey23 <79900831+tarunpandey23@users.noreply.github.com> Date: Mon, 17 Feb 2025 14:57:24 +0530 Subject: [PATCH] fix: updated Dockerfile to fix the workflow stuck issue (#19828) * added for test * added for test * Updated Dockerfile to fix the workflow stuck issue * Updated and fixed the workflow stuck issue * Updated and fixed the workflow stuck issue --------- Co-authored-by: Tarun (cherry picked from commit 8d16657a15993feb26aeebad80c03c2ed4d3faef) --- ingestion/operators/docker/Dockerfile | 1 + ingestion/operators/docker/Dockerfile.ci | 1 + 2 files changed, 2 insertions(+) diff --git a/ingestion/operators/docker/Dockerfile b/ingestion/operators/docker/Dockerfile index 18cdb9cf747..f5a8d94bf04 100644 --- a/ingestion/operators/docker/Dockerfile +++ b/ingestion/operators/docker/Dockerfile @@ -41,6 +41,7 @@ RUN dpkg --configure -a \ && rm -rf /var/lib/apt/lists/* # Add updated postgres/redshift dependencies based on libq +ENV DEBIAN_FRONTEND=noninteractive RUN curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - RUN echo "deb https://apt.postgresql.org/pub/repos/apt/ bullseye-pgdg main" > /etc/apt/sources.list.d/pgdg.list; \ apt-get -qq update; \ diff --git a/ingestion/operators/docker/Dockerfile.ci b/ingestion/operators/docker/Dockerfile.ci index 27752f95438..a12409b9295 100644 --- a/ingestion/operators/docker/Dockerfile.ci +++ b/ingestion/operators/docker/Dockerfile.ci @@ -41,6 +41,7 @@ RUN apt-get -qq update \ && rm -rf /var/lib/apt/lists/* # Add updated postgres/redshift dependencies based on libq +ENV DEBIAN_FRONTEND=noninteractive RUN curl -sS https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - RUN echo "deb https://apt.postgresql.org/pub/repos/apt/ bullseye-pgdg main" > /etc/apt/sources.list.d/pgdg.list; \ apt-get -qq update; \