From 13d077ae134977b6c919720b50103ecccf84e25d Mon Sep 17 00:00:00 2001 From: marsalva Date: Wed, 4 Feb 2026 20:56:42 +0000 Subject: [PATCH] =?UTF-8?q?A=C3=B1adir=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile 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