chore: added docker compoe for docs

This commit is contained in:
Данил 2025-02-26 15:29:01 +03:00
parent 9724fac958
commit d8396d2331
2 changed files with 31 additions and 1 deletions

9
docs/Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM node:20-alpine
WORKDIR /
COPY ./package*.json .
RUN npm install
CMD ["npm", "run", "build"]