add node code

This commit is contained in:
Bruce Röttgers
2025-04-09 13:50:08 +02:00
parent e242a18408
commit 04b6e56d14
7 changed files with 414 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:22
WORKDIR /app
COPY package.json .
COPY package-lock.json .
RUN npm install
COPY index.ts .
CMD [ "node", "--max-old-space-size=4096", "--experimental-strip-types", "index.ts" ]