We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3af71a2 commit ed41a32Copy full SHA for ed41a32
Dockerfile
@@ -3,6 +3,12 @@ FROM node:18
3
WORKDIR /test-suite
4
5
RUN apt update
6
+
7
+# JRE is a dependency for the reporting software Allure
8
+# By including this dependency, a user could overwrite the entrypoint with
9
+# npx mocha tests/ && npx allure serve
10
+# when invoking the image and the container will serve a
11
+# browsable report once the tests are finished
12
RUN apt install default-jre -y
13
14
COPY package.json ./
0 commit comments