Added geckodriver to the testing docker image.

This commit is contained in:
Ramon Novoa 2016-10-25 10:41:18 +02:00
parent d11df9e50e
commit 714e7a7a87
1 changed files with 7 additions and 0 deletions

View File

@ -97,5 +97,12 @@ RUN yum install -y \
net-snmp-utils \ net-snmp-utils \
perl-Test-Simple; yum clean all; perl-Test-Simple; yum clean all;
# Install geckodriver
RUN cd /tmp && \
curl -o geckodriver.tgz -L https://github.com/mozilla/geckodriver/releases/download/v0.11.1/geckodriver-v0.11.1-linux64.tar.gz && \
tar zxvf geckodriver.tgz && \
mv geckodriver /usr/bin && \
rm geckodriver.tgz
#Exposing ports for: HTTP, SNMP Traps, Anytermd (SSH), Anytermd (Telnet), Tentacle protocol #Exposing ports for: HTTP, SNMP Traps, Anytermd (SSH), Anytermd (Telnet), Tentacle protocol
EXPOSE 80 162/udp 8022 8023 41121 EXPOSE 80 162/udp 8022 8023 41121