Añadir captain-definition

This commit is contained in:
marsalva 2025-12-26 09:30:32 +00:00
parent d11f4e44ad
commit bbc2639267
1 changed files with 11 additions and 0 deletions

11
captain-definition Normal file
View File

@ -0,0 +1,11 @@
{
"schemaVersion": 2,
"dockerfileLines": [
"FROM mcr.microsoft.com/playwright:v1.57.0-noble",
"WORKDIR /app",
"COPY package*.json ./",
"RUN npm install",
"COPY . .",
"CMD [\"node\", \"index.js\"]"
]
}