docker/Dockerfile: Make build noninteractive (#1500)

This fixes an issue related to #1138 where the image build was not passing
This commit is contained in:
ps 2019-05-03 12:55:35 +02:00 committed by xarkes
parent 72a9319386
commit 82bf2b011f

View File

@ -1,6 +1,9 @@
FROM ubuntu:rolling
LABEL maintainer "pschmied <ps1337@mailbox.org>"
# Prevent build fails because of interactive scripts when compiling
ENV DEBIAN_FRONTEND noninteractive
# Dependencies
RUN apt-get update && \
apt-get -y install \