diff --git a/ingestion/operators/docker/Dockerfile b/ingestion/operators/docker/Dockerfile index ecc93e0d832..0364308396b 100644 --- a/ingestion/operators/docker/Dockerfile +++ b/ingestion/operators/docker/Dockerfile @@ -44,7 +44,7 @@ RUN dpkg --configure -a \ 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 RUN apt-get -qq update -RUN apt-get -qq install --no-install-recommends -y libpq-dev postgresql-15 postgresql-client-15 postgresql-common postgresql-contrib-15 +RUN DEBIAN_FRONTEND=noninteractive apt-get -qq install --no-install-recommends -y libpq-dev postgresql-15 postgresql-client-15 postgresql-common postgresql-contrib-15 RUN apt-get -qq autoremove -yqq --purge RUN apt-get -qq clean && rm -rf /var/lib/apt/lists/*