Skip to content

Commit e32c378

Browse files
committed
Remove JRE installation from Dockerfile
1 parent ed41a32 commit e32c378

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

Dockerfile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,8 @@ WORKDIR /test-suite
44

55
RUN apt update
66

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-
147
COPY package.json ./
158
COPY tests/ ./tests
169

1710
RUN npm i
18-
CMD [ "npm", "t" ]
11+
CMD [ "npm", "t" ]

0 commit comments

Comments
 (0)