diff --git a/Dockerfile b/Dockerfile index cda9109..0ccc5ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,10 @@ FROM node:18 WORKDIR /test-suite -COPY package.json ./ +COPY package.json respecConfig.json abstract.hbs ./ COPY tests/ ./tests +COPY reports/ ./reports RUN npm i -CMD [ "npm", "t" ] \ No newline at end of file +RUN npm install --global serve +CMD [ "npm", "t" ]