This commit is contained in:
2026-03-23 14:42:36 -03:00
parent 71fd0510de
commit 5ed876d694
17 changed files with 767 additions and 137 deletions

View File

@@ -1,13 +1,15 @@
FROM node:20-alpine
WORKDIR /app
WORKDIR /ui
RUN npm install -g pnpm
COPY package.json ./
RUN pnpm install
# Copy both framework and detection-app (preserves relative link structure)
COPY framework/ ./framework/
COPY detection-app/ ./detection-app/
COPY . .
WORKDIR /ui/detection-app
RUN pnpm install
EXPOSE 5175