From 0b4b612e931b7055b9e88dda52b2cd5897f0450c Mon Sep 17 00:00:00 2001 From: mng990 Date: Sat, 7 Sep 2024 02:38:05 +0900 Subject: [PATCH] =?UTF-8?q?test:=20=EB=B0=B0=ED=8F=AC=20=ED=85=8C=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- requirements.txt | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 491aab9..3ba7cb8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM python:3.12.4-slim COPY . . # 필요 패키지 설치 -RUN pip install --upgrade pip +RUN pip install --upgrade pip setuptools wheel RUN pip install --use-pep517 --no-cache-dir -r requirements.txt ENTRYPOINT ["uvicorn", "ai_server.py:app", "--host", "0.0.0.0", "--port", "8000"] diff --git a/requirements.txt b/requirements.txt index 1407694..0abbdc3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ fastapi -pydantic uvicorn +pydantic +dotenv elasticsearch sentence-transformers -langchain_community -langchain-openai -langchain-core openai -dotenv \ No newline at end of file +langchain-core +langchain-openai +langchain_community \ No newline at end of file