files cant't be seen by LLM, but everything else works.

This commit is contained in:
emil
2026-04-26 22:52:49 +03:00
parent 55d4b7dbba
commit 2307c63bf1
16 changed files with 861 additions and 134 deletions
+20
View File
@@ -0,0 +1,20 @@
FROM node:20-alpine
WORKDIR /app
# Install dependencies
COPY package*.json ./
RUN npm ci --only=production
# Copy source
COPY src/ ./src/
# Create data directories
RUN mkdir -p /app/data/uploads /app/data/chromadb
EXPOSE 3002
ENV NODE_ENV=production
ENV PORT=3002
CMD ["node", "src/index.js"]