Añadir captain-definition

This commit is contained in:
marsalva 2025-12-30 08:45:43 +00:00
parent 60e26315de
commit 05a7ce73fe
1 changed files with 13 additions and 0 deletions

13
captain-definition Normal file
View File

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