Añadir captain-definition

This commit is contained in:
marsalva 2026-02-04 20:57:13 +00:00
parent 13d077ae13
commit 5e0ca6db76
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.49.1-noble",
"WORKDIR /app",
"COPY package*.json ./",
"RUN npm install",
"COPY . .",
"CMD [\"node\", \"index.js\"]"
]
}