From 38bde0dde9f6b6837b594dd42c38186829f56598 Mon Sep 17 00:00:00 2001 From: marsalva Date: Fri, 26 Dec 2025 09:32:21 +0000 Subject: [PATCH] Actualizar dockerfile --- dockerfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dockerfile b/dockerfile index b9a942f..d0b6d28 100644 --- a/dockerfile +++ b/dockerfile @@ -1,7 +1,10 @@ -# robot-multiasistencia/Dockerfile -FROM node:18-alpine +FROM mcr.microsoft.com/playwright:v1.57.0-noble + WORKDIR /app -COPY package.json ./ -RUN npm install --only=production + +COPY package*.json ./ +RUN npm install + COPY . . + CMD ["node", "index.js"] \ No newline at end of file