feat: implement scoring and ranking for video frames, enhance candidate selection process

This commit is contained in:
Ben
2026-05-14 02:09:39 -07:00
parent e308adc642
commit 65ef5420e7
6 changed files with 179 additions and 57 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:22-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM nginx:1.27-alpine
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80