diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..306eab0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM mcr.microsoft.com/playwright:v1.49.1-jammy + +WORKDIR /tests + +COPY package*.json ./ +RUN npm ci + +COPY . . + +RUN mkdir -p results + +CMD ["bash", "-lc", "node run-api-checks.js && npx playwright test"] \ No newline at end of file