annotate testbench-grid/Dockerfile @ 539:5d5525414c8d production tip

update exec-all-projects-docker.sh to search for ./env/*-shared.properties in place of ./env/ssdt-*-shared.properties. ESS doesn't follow the same pattern for property file names.
author Marc Davis <marc.davis@mcoecn.org>
date Mon, 13 May 2024 13:28:30 -0400
parents 50e99c5b33af
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" ]