From de8f6c92836fd521f776b30c7637a68ca6c4212c Mon Sep 17 00:00:00 2001 From: clogic Date: Sat, 18 Jan 2025 11:12:51 +0900 Subject: [PATCH] =?UTF-8?q?=EC=88=98=EC=A0=95=20=ED=9B=84=20=EB=B0=B0?= =?UTF-8?q?=ED=8F=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 +++-- requirements.txt | 4 +++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 86205c5..1e1b4a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,11 +9,12 @@ RUN mkdir -p /code WORKDIR /code +COPY . /code RUN pip install poetry COPY pyproject.toml poetry.lock /code/ RUN poetry config virtualenvs.create false -RUN poetry install --only main --no-root --no-interaction -COPY . /code +RUN #poetry install --only main --no-root --no-interaction +RUN pip install -r /code/requirements.txt EXPOSE 8000 diff --git a/requirements.txt b/requirements.txt index 3ba1c9d..8f46e55 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,4 @@ annotated-types==0.7.0 -anthropic==0.43.1 anyio==4.8.0 asgiref==3.8.1 certifi==2024.12.14 @@ -9,12 +8,15 @@ Django==5.1.5 django-cors-headers==4.6.0 django-ninja==1.3.0 exceptiongroup==1.2.2 +gunicorn==23.0.0 h11==0.14.0 httpcore==1.0.7 httpx==0.28.1 idna==3.10 jiter==0.8.2 openai==1.59.7 +packaging==24.2 +psycopg2-binary==2.9.10 pydantic==2.10.5 pydantic_core==2.27.2 python-dotenv==1.0.1