feat(docker): set default Docker to use Ollama (#1812)

This commit is contained in:
Marco Repetto 2024-04-01 13:08:48 +02:00 committed by GitHub
parent 087cb0b7b7
commit f83abff8bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 4 deletions

View file

@ -14,7 +14,7 @@ FROM base as dependencies
WORKDIR /home/worker/app
COPY pyproject.toml poetry.lock ./
RUN poetry install --extras "ui vector-stores-qdrant"
RUN poetry install --extras "ui vector-stores-qdrant llms-ollama embeddings-ollama"
FROM base as app