initial commit

This commit is contained in:
Ivan
2024-05-15 16:27:22 +03:00
commit b34ea0b94c
28 changed files with 19735 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\"]"
]
}