Initial commit

This commit is contained in:
2024-08-09 16:56:18 +00:00
commit af7628aaf1
22 changed files with 1334 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM node:22.4-slim
WORKDIR /work
COPY ./package.json ./package-lock.json .
RUN npm install
COPY ./ .
CMD ["npx", "ts-node", "index.ts"]