Skip to content

Commit

Permalink
수정 후 배포
Browse files Browse the repository at this point in the history
  • Loading branch information
clogic29 committed Jan 18, 2025
1 parent 294c6e2 commit de8f6c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit de8f6c9

Please sign in to comment.