diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0ccc5ec --- /dev/null +++ b/Dockerfile @@ -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" ]