Skip to content

Commit e146525

Browse files
committed
Create Dockerfile
1 parent f5d0afe commit e146525

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM node:18
2+
3+
WORKDIR /test-suite
4+
5+
COPY package.json respecConfig.json abstract.hbs ./
6+
COPY tests/ ./tests
7+
COPY reports/ ./reports
8+
9+
RUN npm i
10+
RUN npm install --global serve
11+
CMD [ "npm", "t" ]

0 commit comments

Comments
 (0)