Skip to content

Commit

Permalink
AI 환경 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
SalkCoding committed Dec 18, 2024
1 parent 8b22040 commit b62a6b6
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b62a6b6

Please sign in to comment.