File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ FROM debian:buster-slim as run
120120ARG PGVERSION
121121
122122RUN apt-get update \
123- && apt-get install -y --no-install-recommends \
123+ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
124124 ca-certificates \
125125 curl \
126126 gnupg \
@@ -143,7 +143,7 @@ RUN echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" > /etc/a
143143# bypass initdb of a "main" cluster
144144RUN echo 'create_main_cluster = false' | sudo tee -a /etc/postgresql-common/createcluster.conf
145145RUN apt-get update\
146- && apt-get install -y --no-install-recommends postgresql-${PGVERSION} \
146+ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends postgresql-${PGVERSION} \
147147 && rm -rf /var/lib/apt/lists/*
148148
149149RUN adduser --disabled-password --gecos '' --home /var/lib/postgres docker
You can’t perform that action at this time.
0 commit comments