Mercurial > public > ssdt-docker
diff testbench-node/Dockerfile @ 344:731a1492c8a0
testbench updates
author | aldrich@ssdt-ohio.org |
---|---|
date | Wed, 20 May 2020 15:48:31 +0100 |
parents | 3eaeb138e1ae |
children | 4598330892d2 2e65334684d8 |
line wrap: on
line diff
--- a/testbench-node/Dockerfile Mon May 04 19:13:14 2020 +0100 +++ b/testbench-node/Dockerfile Wed May 20 15:48:31 2020 +0100 @@ -1,6 +1,6 @@ -FROM java:8-jre +FROM openjdk:8 -MAINTAINER Dave Smith <smith@nwoca.org> +MAINTAINER Catherine Aldrich <aldrich@ssdt-ohio.org> ENV TESTBENCHJAR=/testbench-standalone.jar @@ -8,13 +8,37 @@ WORKDIR /phantom + + ADD http://files.ssdt.io/phantomjs-2.1.1-linux-x86_64.tar /phantom/phantomjs.tar RUN tar -xf phantomjs.tar \ && mv $(find /phantom -name phantomjs) /bin \ && rm -rf /phantom + -ADD http://files.ssdt.io/vaadin-testbench-standalone-4.0.3.jar $TESTBENCHJAR +RUN apt-get update -y + +WORKDIR / +##Chrome +ADD http://files.ssdt.io/google-chrome-stable_current_amd64.deb . + +RUN apt install -y ./google-chrome-stable_current_amd64.deb + +RUN rm -rf google-chrome-stable_current_amd64.deb + +##Chromium driver (apt-get did notwork) +ADD http://files.ssdt.io/chromedriver_linux64.zip . +RUN unzip chromedriver_linux64.zip -d / +RUN mv -f /chromedriver /usr/local/bin/chromedriver +RUN chmod 0755 /usr/local/bin/chromedriver + +RUN rm -f /chromedriver_linux64 +##for testing purposes check versions +RUN google-chrome --version +RUN chromedriver --version + +ADD http://files.ssdt.io/vaadin-testbench-standalone-5.1.2.jar $TESTBENCHJAR WORKDIR /