This is an automated email from the ASF dual-hosted git repository. chenhang pushed a commit to branch branch-2.8 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit 48892bed5eb0efe9c2478dc446c8073b08fbf91e Author: Ting Yuan <[email protected]> AuthorDate: Wed Aug 11 03:14:11 2021 +0800 Fix unnecessary user interactions in building pulsar-standalone image (#11623) (cherry picked from commit 18ecf3c61e841632fab06fb5e0420b6d84b3baee) --- docker/pulsar-standalone/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/pulsar-standalone/Dockerfile b/docker/pulsar-standalone/Dockerfile index 01718e4..cabbb7d 100644 --- a/docker/pulsar-standalone/Dockerfile +++ b/docker/pulsar-standalone/Dockerfile @@ -26,6 +26,8 @@ FROM apachepulsar/pulsar-dashboard:latest as dashboard # Restart from FROM ubuntu:20.04 +ARG DEBIAN_FRONTEND=noninteractive + # Note that the libpq-dev package is needed here in order to install # the required python psycopg2 package (for postgresql) later RUN apt-get update \
