feat: add testing-torrents
This commit is contained in:
14
packages/testing-torrents/Dockerfile
Normal file
14
packages/testing-torrents/Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user