Initial DC CMS extraction

This commit is contained in:
DCCONSTRUCTIONS
2026-07-06 00:33:27 +03:00
commit 43a96c9f7f
23 changed files with 13844 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
FROM node:24-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY admin ./admin
COPY projects ./projects
COPY server ./server
ENV HOST=0.0.0.0
ENV PORT=8090
EXPOSE 8090
CMD ["npm", "run", "admin"]