view testbench-node/Dockerfile @ 85:8f45c43ea7a4 feature/djs-DEP-12-docker

DEP-12: start upgrading scripts and compose files for RC and docker 1.12
author Dave Smith <smith@nwoca.org>
date Wed, 21 Sep 2016 19:00:41 -0400
parents 3eaeb138e1ae
children b8373a99ad4d 731a1492c8a0
line wrap: on
line source
FROM java:8-jre

MAINTAINER Dave Smith <smith@nwoca.org>

ENV TESTBENCHJAR=/testbench-standalone.jar

RUN mkdir /phantom

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

WORKDIR / 

COPY ./docker-entrypoint.sh /

RUN chmod a+x /docker-entrypoint.sh

ENTRYPOINT [ "./docker-entrypoint.sh" ]

CMD [ "node" ]