mirror of
https://github.com/Radiquum/AniX.git
synced 2025-06-05 11:39:36 +05:00
feat: add docker files for player-parsers
This commit is contained in:
parent
51a919e2b2
commit
9a2a547217
2 changed files with 12 additions and 0 deletions
2
player-parsers/.dockerignore
Normal file
2
player-parsers/.dockerignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
node_modules
|
||||
README.md
|
10
player-parsers/Dockerfile
Normal file
10
player-parsers/Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM node:23-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm ci
|
||||
|
||||
COPY *.ts ./
|
||||
|
||||
CMD ["npm", "run", "serve"]
|
Loading…
Add table
Add a link
Reference in a new issue