From b62a6b6d89682bad3ae1b03c7a33e4d4d1229770 Mon Sep 17 00:00:00 2001 From: SalkCoding Date: Wed, 18 Dec 2024 21:27:50 +0900 Subject: [PATCH] =?UTF-8?q?AI=20=ED=99=98=EA=B2=BD=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4179a73..a285a15 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,16 +24,15 @@ RUN gradle build --no-daemon FROM openjdk:17.0.1-jdk-slim # debian 기반 -ENV DEBIAN_FRONTEND=noninteractive RUN apt update && apt upgrade -y && apt clean && rm -rf /var/lib/apt/lists/* -RUN apt install python3 -RUN apt install pip3 +RUN apt install -y python3 +RUN apt install -y pip3 -RUN pip install pandas -RUN pip install scikit-learn -RUN pip install xgboost -RUN pip install tensorflow +RUN pip install -y pandas +RUN pip install -y scikit-learn +RUN pip install -y xgboost +RUN pip install -y tensorflow # 작업 디렉토리 설정 WORKDIR /app