Add initial implementation of noThinkProxy with Docker support and README documentation
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user