Add initial implementation of noThinkProxy with Docker support and README documentation

This commit is contained in:
2026-05-10 11:11:59 +02:00
parent deb0d5de9d
commit af75920edc
5 changed files with 286 additions and 62 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --omit=dev
COPY app.js ./
ENV PORT=11435
EXPOSE 11435
CMD ["node", "app.js"]