añadido karpathy y refactorizacion del proyecto

This commit is contained in:
2026-05-25 19:48:56 +02:00
parent 8feb88dfa6
commit ee8cfa03ea
1225 changed files with 875463 additions and 5909 deletions
+24
View File
@@ -0,0 +1,24 @@
# syntax=docker/dockerfile:1
FROM node:20-alpine
WORKDIR /app
# Install dependencies
COPY package*.json ./
RUN npm ci --only=production
# Copy application code
COPY server ./server
COPY web ./web
COPY testcases ./testcases
COPY testplans ./testplans
# Create output directory (for generated reports/plans)
RUN mkdir -p output/testplans output/reports
EXPOSE 4321
ENV NODE_ENV=production
ENV PORT=4321
CMD ["node", "server/index.js"]