Remove output redirects from install script

Steven Goossens 2020-07-07 09:41:48 +02:00 committed by GitHub
parent 210cf33c57
commit 4a7eb543bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,8 @@ ENV DEBIAN_FRONTEND noninteractive
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 sed -i 's/> \/dev\/tty//' /tmp/INSTALL.sh
RUN sed -i 's/> \/dev\/null//' /tmp/INSTALL.sh
RUN bash /tmp/INSTALL.sh -c
VOLUME /var/www/MISP