initial commit

This commit is contained in:
Ivan
2023-12-25 01:00:01 +03:00
commit d0158dad9a
36 changed files with 19627 additions and 0 deletions

11
captain-definition Normal file
View File

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