mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-09 16:03:54 +05:00
feat/api-prox: add 3rd party rating hook and docker file
This commit is contained in:
parent
78b9776899
commit
a06a18b1ac
7 changed files with 141 additions and 24 deletions
16
api-prox/Dockerfile
Normal file
16
api-prox/Dockerfile
Normal 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"]
|
Loading…
Add table
Add a link
Reference in a new issue