aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVasil Velichkov <vvvelichkov@gmail.com>2018-04-24 23:27:40 +0300
committerPiotr Krysik <pkrysik@elka.pw.edu.pl>2018-06-18 15:11:17 +0200
commit8c4eefb205a914c92df0deaf89ffa8338c0cb179 (patch)
treec5588eb1b0a4bcd5c235984d1662fbb76de9743d
parent487bf4764e9091feafb9c2a2ab86e056b124a529 (diff)
Add DEBIAN_FRONTEND=noninteractive
-rw-r--r--tests/dockerfiles/Debian_testing.docker2
-rw-r--r--tests/dockerfiles/Kali.docker2
-rw-r--r--tests/dockerfiles/Ubuntu_16_04.docker2
-rw-r--r--tests/dockerfiles/Ubuntu_16_04_nolibosmo.docker2
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/dockerfiles/Debian_testing.docker b/tests/dockerfiles/Debian_testing.docker
index 643472e..6dd688f 100644
--- a/tests/dockerfiles/Debian_testing.docker
+++ b/tests/dockerfiles/Debian_testing.docker
@@ -1,7 +1,7 @@
FROM debian:testing
MAINTAINER Piotr Krysik
-RUN apt-get update && apt-get install -y \
+RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
cmake \
autoconf \
libtool \
diff --git a/tests/dockerfiles/Kali.docker b/tests/dockerfiles/Kali.docker
index 99b1cac..752311f 100644
--- a/tests/dockerfiles/Kali.docker
+++ b/tests/dockerfiles/Kali.docker
@@ -1,7 +1,7 @@
FROM kalilinux/kali-linux-docker
MAINTAINER Piotr Krysik
-RUN apt-get update && apt-get install -y \
+RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
cmake \
autoconf \
libtool \
diff --git a/tests/dockerfiles/Ubuntu_16_04.docker b/tests/dockerfiles/Ubuntu_16_04.docker
index 21eafec..17698f8 100644
--- a/tests/dockerfiles/Ubuntu_16_04.docker
+++ b/tests/dockerfiles/Ubuntu_16_04.docker
@@ -1,7 +1,7 @@
FROM ubuntu:16.04
MAINTAINER Piotr Krysik
-RUN apt-get update && apt-get install -y \
+RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
cmake \
autoconf \
libtool \
diff --git a/tests/dockerfiles/Ubuntu_16_04_nolibosmo.docker b/tests/dockerfiles/Ubuntu_16_04_nolibosmo.docker
index 879189e..a73c633 100644
--- a/tests/dockerfiles/Ubuntu_16_04_nolibosmo.docker
+++ b/tests/dockerfiles/Ubuntu_16_04_nolibosmo.docker
@@ -1,7 +1,7 @@
FROM ubuntu:16.04
MAINTAINER Piotr Krysik
-RUN apt-get update && apt-get install -y \
+RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
cmake \
autoconf \
libtool \