Añadir Dockerfile

This commit is contained in:
marsalva 2026-02-04 20:56:42 +00:00
parent a1236ded47
commit 13d077ae13
1 changed files with 10 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -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"]