feat/api-prox: add 3rd party rating hook and docker file

This commit is contained in:
Kentai Radiquum 2025-09-07 17:44:26 +05:00
parent 78b9776899
commit a06a18b1ac
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
7 changed files with 141 additions and 24 deletions

16
api-prox/Dockerfile Normal file
View file

@ -0,0 +1,16 @@
FROM node:23-alpine
LABEL org.opencontainers.image.source=https://github.com/radiquum/anix
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
ADD src ./src
COPY node.ts ./
COPY tsconfig.json ./
EXPOSE 7001
CMD ["npm", "run", "node-run"]