diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d0b6d28 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM mcr.microsoft.com/playwright:v1.57.0-noble + +WORKDIR /app + +COPY package*.json ./ +RUN npm install + +COPY . . + +CMD ["node", "index.js"] \ No newline at end of file