Añadir Dockerfile

This commit is contained in:
marsalva 2025-12-29 23:03:18 +00:00
parent de8d17c38b
commit 10d8f005bc
1 changed files with 12 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
{
"schemaVersion": 2,
"dockerfileLines": [
"FROM mcr.microsoft.com/playwright:v1.40.0-focal",
"WORKDIR /usr/src/app",
"COPY package*.json ./",
"RUN npm install",
"COPY . .",
"EXPOSE 3000",
"CMD [ \"node\", \"robot_cobros.js\" ]"
]
}