annotate testbench-grid/Dockerfile @ 367:50e99c5b33af production vv2.9.0

flow: Merged <release> 'v2.9.0' to <master> ('production').
author Jodi Becher <becher@ssdt-ohio.org>
date Mon, 16 Aug 2021 18:46:57 +0100
parents 4598330892d2 2e65334684d8
children
rev   line source
344
731a1492c8a0 testbench updates
aldrich@ssdt-ohio.org
parents: 77
diff changeset
1 FROM openjdk:8
77
0f366721a499 add dockerfiles for testbench grid
smith@nwoca.org
parents:
diff changeset
2
361
2e65334684d8 adding and updating testbench information
aldrich@ssdt-ohio.org
parents: 344
diff changeset
3 MAINTAINER Catherine Aldrich and Greg Shepherd <shepherd@ssdt-ohio.org>
77
0f366721a499 add dockerfiles for testbench grid
smith@nwoca.org
parents:
diff changeset
4
0f366721a499 add dockerfiles for testbench grid
smith@nwoca.org
parents:
diff changeset
5 ENV TESTBENCHJAR=/testbench-standalone.jar
0f366721a499 add dockerfiles for testbench grid
smith@nwoca.org
parents:
diff changeset
6
361
2e65334684d8 adding and updating testbench information
aldrich@ssdt-ohio.org
parents: 344
diff changeset
7 ADD ./vaadin-testbench-standalone-5.2.0.jar $TESTBENCHJAR
77
0f366721a499 add dockerfiles for testbench grid
smith@nwoca.org
parents:
diff changeset
8
0f366721a499 add dockerfiles for testbench grid
smith@nwoca.org
parents:
diff changeset
9 EXPOSE 4444
0f366721a499 add dockerfiles for testbench grid
smith@nwoca.org
parents:
diff changeset
10
0f366721a499 add dockerfiles for testbench grid
smith@nwoca.org
parents:
diff changeset
11 WORKDIR /
0f366721a499 add dockerfiles for testbench grid
smith@nwoca.org
parents:
diff changeset
12
0f366721a499 add dockerfiles for testbench grid
smith@nwoca.org
parents:
diff changeset
13 CMD ["java", "-jar", "testbench-standalone.jar", "-role", "hub" ]