initial commit

This commit is contained in:
Ivan
2024-05-15 17:22:55 +03:00
commit 0ddf95cdda
7 changed files with 7307 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\"]"
]
}