From 05e0cd95d4844b00003c188689cae2360f2792d6 Mon Sep 17 00:00:00 2001 From: ".\\.gitconfigSaltedFishLZ" <.\.gitconfigsaltedfishliangz@outlook.com> Date: Tue, 12 Dec 2023 00:15:25 -0800 Subject: [PATCH] missing tiktoken package added --- service3/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service3/Dockerfile b/service3/Dockerfile index 8661acf..e9ab1ea 100644 --- a/service3/Dockerfile +++ b/service3/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app COPY . /app -RUN pip install --no-cache-dir fastapi uvicorn redis requests openai langchain python-dotenv postgres psycopg2-binary pgvector +RUN pip install --no-cache-dir fastapi uvicorn redis requests tiktoken openai langchain python-dotenv postgres psycopg2-binary pgvector # install postgresql client RUN apt-get update && apt-get install -y postgresql-client && rm -rf /var/lib/apt/lists/*