- apt list 안의 라이브러리 명단 제거
# Remove any third-party apt sources to avoid issues with expiring keys.
RUN rm -f /etc/apt/sources.list.d/*.list
- apt-get이 Interactive 입력을 받지 않도록 한다. ( 마치 -y 옵션 같은 느김 )
(ARG 는 argument)
# Install some basic utilities & python prerequisites
ARG DEBIAN_FRONTEND=noninteractive
- 타임존을 서울로 변경
# Set up time zone
ENV TZ=Asia/Seoul
RUN sudo ln -snf /usr/share/zoneinfo/$TZ /etc/localtime
'Docker' 카테고리의 다른 글
[Docker] VS Code 연동 (0) | 2023.03.13 |
---|---|
Docker, Nvidia Container 설치 (0) | 2023.03.13 |
NVIDIA Docker Image list (0) | 2023.03.02 |
[Ubuntu 22.04] NVIDIA-Docker 설치 (0) | 2023.03.02 |
[Docker 입문] Docker compose (0) | 2023.01.23 |