feat: establish standalone Device Core repository

This commit is contained in:
DCCONSTRUCTIONS
2026-08-21 11:51:21 +03:00
commit e0bac205d0
244 changed files with 51962 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM node:22-alpine
ENV NODE_ENV=production
ENV HOST=0.0.0.0
ENV PORT=18122
WORKDIR /app
COPY server ./server
COPY dist ./dist
USER node
EXPOSE 18122
CMD ["node", "server/device-manager-server.mjs"]