client/captain-definition
2024-07-10 20:49:28 +02:00

11 lines
261 B
Plaintext

{
"schemaVersion": 2,
"dockerfileLines": [
"FROM node:22.4.1-alpine",
"RUN mkdir -p /usr/src/app",
"WORKDIR /usr/src/app",
"COPY ./ /usr/src/app",
"RUN npm install && npm cache clean --force && npm run build-ntc",
"CMD [ \"npm\", \"start\" ]"
]
}