ui selector

This commit is contained in:
2026-03-13 14:59:32 -03:00
parent ccc478fbaa
commit d5a3372d6b
7 changed files with 173 additions and 11 deletions

12
ui/chunker/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json ./
RUN npm install
COPY . .
EXPOSE 5174
CMD ["npm", "run", "dev"]