forked from zovos/vk_hackathon
- Add logviewer/: Dozzle web UI (port 9999) + analyze.py CLI tool - docker-compose.yml: add json-file logging with rotation and labels for index/search - Fix Dockerfiles: COPY *.py . so all modules are included in image - Convert all relative imports to flat absolute imports for Docker flat layout - Rename index/schemas.py → index/index_schemas.py to avoid module name collision with search/schemas.py in test runner - Update all tests to add service dir to sys.path and use flat imports Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
447 B
Docker
21 lines
447 B
Docker
FROM python:3.13-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY *.py .
|
|
|
|
ENV HOST=0.0.0.0
|
|
ENV PORT=8000
|
|
ENV CHUNK_SIZE=10
|
|
ENV FASTEMBED_CACHE_PATH=/models/fastembed
|
|
ENV HF_HOME=/models/huggingface
|
|
|
|
RUN mkdir -p /models/fastembed /models/huggingface
|
|
RUN python -c "from fastembed import SparseTextEmbedding; SparseTextEmbedding(model_name='Qdrant/bm25')"
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["python", "main.py"]
|