Dockerfile apt-get 최적화

Jmnote (토론 | 기여)님의 2020년 3월 12일 (목) 13:55 판 (새 문서: ==개요== ;Dockerfile apt-get ;Dockerfile 데비안, 우분투 apt-get 최적화 <source lang='console'> RUN apt-get update && apt-get install -y \ 패키지명1 \ 패키지...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

Dockerfile apt-get
Dockerfile 데비안, 우분투 apt-get 최적화
RUN apt-get update && apt-get install -y \
    패키지명1 \
    패키지명2 \
    패키지명3 \
   ... \
 && rm -rf /var/lib/apt/lists/*

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}