From 210cf33c57ef3cc6bec5799e03dec58ce51e0530 Mon Sep 17 00:00:00 2001 From: Steven Goossens Date: Mon, 6 Jul 2020 09:11:59 +0200 Subject: [PATCH] Added -y to apt commands --- web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/Dockerfile b/web/Dockerfile index 1329ccc..2e5a672 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:focal # Install core components ENV DEBIAN_FRONTEND noninteractive -RUN apt update && apt install wget +RUN apt update -y && apt install wget -y # This will install MISP Core RUN wget -O /tmp/INSTALL.sh https://raw.githubusercontent.com/MISP/MISP/2.4/INSTALL/INSTALL.sh RUN bash /tmp/INSTALL.sh -c