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 b62a6b6 commit c9be0c8
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,11 @@ RUN gradle build --no-daemon
FROM openjdk:17.0.1-jdk-slim

# debian 기반
RUN apt update && apt upgrade -y && apt clean && rm -rf /var/lib/apt/lists/*
# Debian 기반
RUN apt update && apt upgrade -y && apt install -y python3 python3-pip && \
pip3 install pandas scikit-learn xgboost tensorflow && \
apt clean && rm -rf /var/lib/apt/lists/*

RUN apt install -y python3
RUN apt install -y pip3

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 c9be0c8

Please sign in to comment.