non-interactive frontend

pull/263/head
Webber 2021-05-21 22:04:04 +02:00
parent 1c74296947
commit 4e7125603b
1 changed files with 4 additions and 1 deletions

5
dist/Dockerfile vendored
View File

@ -17,10 +17,13 @@ ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
RUN ls
# Set frontend to Noninteractive
# https://github.com/phusion/baseimage-docker/issues/58#issuecomment-47995343
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN apt-get -q update \
&& apt-get -q install -y --no-install-recommends --allow-downgrades \
libnotify4 \
libnotify-bin \
&& apt-get clean
ENTRYPOINT ["/entrypoint.sh"]