chore: install all extras for prod (#1989)

Co-authored-by: Shubham Naik <shub@memgpt.ai>
This commit is contained in:
Shubham Naik
2024-11-06 13:02:02 -08:00
committed by GitHub
parent 5b5debf941
commit 30c102cfd6

View File

@@ -16,7 +16,7 @@ RUN poetry lock --no-update
RUN if [ "$LETTA_ENVIRONMENT" = "DEVELOPMENT" ] ; then \
poetry install --no-root -E "postgres server dev" ; \
else \
poetry install --no-root -E "postgres server" && \
poetry install --no-root --all-extras && \
rm -rf $POETRY_CACHE_DIR ; \
fi