Replace frontend with real working CAD editor source from /data/web-cad-neu (TS, React 18, full ribbon bar, KI, layers, tools)

This commit is contained in:
Agent Zero
2026-06-28 10:00:32 +02:00
parent b56c65815a
commit 2109f0544b
117 changed files with 22344 additions and 5121 deletions
+3 -13
View File
@@ -1,20 +1,10 @@
FROM node:22-alpine AS build
FROM node:20-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY package.json package-lock.json* ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine
RUN apk add --no-cache curl
COPY --from=build /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]