Refactor S3 file handling and update Dockerfile to include local Chroma DB file

This commit is contained in:
mrT23
2024-09-21 19:11:46 +03:00
parent 1e51acff22
commit 5c7b65810c
2 changed files with 12 additions and 16 deletions

View File

@ -1,6 +1,7 @@
FROM python:3.12.3 AS base
WORKDIR /app
ADD docs/chroma_db.zip /app/docs/chroma_db.zip
ADD pyproject.toml .
ADD requirements.txt .
RUN pip install . && rm pyproject.toml requirements.txt