annotate testbench-grid/Dockerfile @ 223:04030a5e355a
production v1.6.0
flow: Merged <release> 'v1.6.0' to <master> ('production').
author |
smith@nwoca.org |
date |
Mon, 09 Oct 2017 17:22:23 +0100 |
parents |
0f366721a499 |
children |
b8373a99ad4d 731a1492c8a0 |
rev |
line source |
77
|
1 FROM java:8-jre
|
|
2
|
|
3 MAINTAINER Dave Smith <smith@nwoca.org>
|
|
4
|
|
5 ENV TESTBENCHJAR=/testbench-standalone.jar
|
|
6
|
|
7 ADD http://files.ssdt.io/vaadin-testbench-standalone-4.0.3.jar $TESTBENCHJAR
|
|
8
|
|
9 EXPOSE 4444
|
|
10
|
|
11 WORKDIR /
|
|
12
|
|
13 CMD ["java", "-jar", "testbench-standalone.jar", "-role", "hub" ]
|