diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..05f55e7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM node:20.10.0 +COPY ./package.json . +COPY ./package-lock.json . +RUN npm ci +RUN npx playwright install --with-deps