From 5fea428a878ff41f6162bfe926013120208c5198 Mon Sep 17 00:00:00 2001 From: Axel Date: Tue, 24 May 2016 00:23:30 +0200 Subject: [PATCH] Update Dockerfile Added "yum clean all" instruction to make it pass on the Docker Hub (thank God for good practices at 12am!) --- tests/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Dockerfile b/tests/Dockerfile index 1d0d760b62..84f2ea3650 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -23,7 +23,7 @@ RUN yum -y update; yum clean all; RUN yum install -y \ firefox \ python-pip \ - xorg-x11-server-Xvfb + xorg-x11-server-Xvfb; yum clean all; RUN pip install pyvirtualdisplay RUN pip install selenium @@ -57,7 +57,7 @@ RUN yum install -y \ nmap \ xprobe2 \ mysql-server \ - mysql + mysql; yum clean all; # Pandora FMS Server dependencies RUN yum install -y \ @@ -92,5 +92,5 @@ RUN yum install -y \ perl-Encode-Locale \ net-snmp \ net-snmp-utils \ - perl-Test-Simple + perl-Test-Simple; yum clean all;