cobros-multi/captain-definition

13 lines
312 B
Plaintext

{
"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\" ]"
]
}