Skip to content

Commit ae45f74

Browse files
committed
add docker file for test suite
Signed-off-by: PatStLouis <[email protected]>
1 parent 9e00222 commit ae45f74

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Dockerfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM node:18
2+
3+
RUN apt update
4+
RUN apt install default-jre -y
5+
6+
COPY package.json ./
7+
COPY tests/ ./
8+
9+
RUN npm i
10+
RUN npx test tests/
11+
12+
ENTRYPOINT ["npx", "allure", "serve", "-h", "0.0.0.0", "-p", "8080"]

0 commit comments

Comments
 (0)