From bc29c814f19ba891f371f2b2c23de95ec77beceb Mon Sep 17 00:00:00 2001 From: gabang2 Date: Tue, 9 Jul 2024 23:46:02 +0900 Subject: [PATCH] =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 769ca09..dd0f307 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,8 @@ FROM python:3.9 WORKDIR /code # 필요한 라이브러리 설치 -RUN dnf -y update && dnf -y install \ - python39 \ - python39-pip \ - libxcrypt-compat +RUN yum install libxcrypt-compat + # 종속성 파일 복사 및 설치 COPY ./requirements.txt /code/ RUN pip install --no-cache-dir --upgrade -r requirements.txt