Skip to content

Commit

Permalink
Hot-Fix: 수정 도커 파일 깃 설치
Browse files Browse the repository at this point in the history
update 후 -y로 git 설치해야 함.
  • Loading branch information
semnisem committed Nov 16, 2024
1 parent 01da7fc commit bc19920
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ FROM python:3.12-slim
LABEL org.opencontainers.image.source="https://github.com/AI-SIP/MVP_CV"

# 필요한 시스템 패키지 먼저 설치
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && apt-get install -y git \
libgl1-mesa-glx \
libglib2.0-0 \
gcc \
python3-dev && \
git && \
rm -rf /var/lib/apt/lists/* \

# 작업 디렉토리 설정
Expand Down

0 comments on commit bc19920

Please sign in to comment.