Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
PatStLouis committed Feb 24, 2025
1 parent f5d0afe commit e146525
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM node:18

WORKDIR /test-suite

COPY package.json respecConfig.json abstract.hbs ./
COPY tests/ ./tests
COPY reports/ ./reports

RUN npm i
RUN npm install --global serve
CMD [ "npm", "t" ]

0 comments on commit e146525

Please sign in to comment.