Files
site/captain-definition
2023-12-25 01:00:01 +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\"]"
]
}