From c190efe8d4c402b2c770c7e7aadda7d1f1f9dae9 Mon Sep 17 00:00:00 2001 From: yeonjy73 Date: Wed, 9 Jul 2025 15:46:51 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=B2=84=EC=A0=84=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 3 +++ requirements.txt | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9041a0e..e9e1d1d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,9 @@ FROM python:3.9-slim # 2. 작업 디렉토리 생성 WORKDIR /app +# pip 업그레이드 +RUN pip install --upgrade pip + # 3. 요구 사항 파일 복사 COPY requirements.txt /app/ diff --git a/requirements.txt b/requirements.txt index f1f923a..c2ad132 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ annotated-types==0.7.0 anyio==4.9.0 -click==8.2.1 +click==8.1.3 fastapi==0.116.0 h11==0.16.0 httptools==0.6.4