Add DEBIAN_FRONTEND=noninteractive

This commit is contained in:
Vasil Velichkov 2018-04-24 23:27:40 +03:00 committed by Piotr Krysik
parent 487bf4764e
commit 8c4eefb205
4 changed files with 4 additions and 4 deletions

View File

@ -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 \

View File

@ -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 \

View File

@ -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 \

View File

@ -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 \