From 9ce7aeab670f3306062b8f089a37c8bfdcb5eb48 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Tue, 19 Mar 2024 17:09:23 -0700 Subject: [PATCH] build: fix build --- Dockerfile.database | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile.database b/Dockerfile.database index 9e2d1637b02..92859a61d8e 100644 --- a/Dockerfile.database +++ b/Dockerfile.database @@ -53,6 +53,11 @@ RUN pip install *.whl /wheels/* --no-index --find-links=/wheels/ && rm -f *.whl # install semantic-cache [Experimental]- we need this here and not in requirements.txt because redisvl pins to pydantic 1.0 RUN pip install redisvl==0.0.7 --no-deps +# ensure pyjwt is used, not jwt +RUN pip uninstall jwt -y +RUN pip uninstall PyJWT -y +RUN pip install PyJWT --no-cache-dir + # Build Admin UI RUN chmod +x build_admin_ui.sh && ./build_admin_ui.sh