Mercurial > public > ssdt-docker
annotate testbench-grid/Dockerfile @ 539:5d5525414c8d production
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 | 1 FROM openjdk:8 |
77 | 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 | 4 |
5 ENV TESTBENCHJAR=/testbench-standalone.jar | |
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 | 8 |
9 EXPOSE 4444 | |
10 | |
11 WORKDIR / | |
12 | |
13 CMD ["java", "-jar", "testbench-standalone.jar", "-role", "hub" ] |