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; \