feat: add docker files for player-parsers

This commit is contained in:
Kentai Radiquum 2025-05-29 23:03:35 +05:00
parent 51a919e2b2
commit 9a2a547217
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,2 @@
node_modules
README.md

10
player-parsers/Dockerfile Normal file
View 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"]