refactor: remove legacy react ui

This commit is contained in:
a.tolmachev
2026-03-29 14:03:47 +03:00
parent 9767d12966
commit df2974bafa
32 changed files with 100 additions and 7149 deletions
+2 -10
View File
@@ -1,15 +1,7 @@
FROM node:22-alpine AS build
WORKDIR /app
COPY apps/ui/package.json apps/ui/package-lock.json ./
RUN npm ci
COPY apps/ui/ ./
RUN npm run build
FROM nginx:1.27-alpine
COPY apps/ui/nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/dist /usr/share/nginx/html
COPY apps/ui/index.html /usr/share/nginx/html/index.html
COPY Crank.png /usr/share/nginx/html/Crank.png
EXPOSE 3000