mirror of
https://github.com/harivansh-afk/betterNAS.git
synced 2026-04-15 21:03:22 +00:00
add control plane service
Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
parent
679fd504a2
commit
57f221fb72
8 changed files with 766 additions and 0 deletions
15
exapps/control-plane/Dockerfile
Normal file
15
exapps/control-plane/Dockerfile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
FROM node:22-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json package-lock.json tsconfig.base.json ./
|
||||
COPY packages/contracts ./packages/contracts
|
||||
COPY exapps/control-plane ./exapps/control-plane
|
||||
|
||||
RUN npm install
|
||||
RUN npm run build
|
||||
|
||||
WORKDIR /app/exapps/control-plane
|
||||
|
||||
CMD ["npm", "run", "start"]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue