Actualizar dockerfile

This commit is contained in:
marsalva 2025-12-26 09:32:21 +00:00
parent bbc2639267
commit 38bde0dde9
1 changed files with 7 additions and 4 deletions

View File

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