feat: add testing-torrents

This commit is contained in:
2025-04-01 03:00:29 +08:00
parent 07ac7e3376
commit a0fc4c04d9
21 changed files with 2667 additions and 439 deletions

View File

@@ -0,0 +1,14 @@
FROM node:23-slim AS nodebt
FROM nodebt AS deps
RUN mkdir -p /app/workspace
WORKDIR /app
COPY package.json /app/
RUN npm install
FROM deps AS app
COPY main.ts /app/
CMD [ "npm", "start" ]