passesBackend/captain-definition
2024-05-15 17:22:55 +03:00

12 lines
206 B
Plaintext

{
"schemaVersion": 2,
"dockerfileLines": [
"FROM node",
"WORKDIR /app",
"COPY package*.json ./",
"RUN npm install --production",
"COPY . .",
"CMD [\"node\", \"index.js\"]"
]
}