Docker/Docker Tutorials1 Dockerfile 만들기 튜토리얼 [도커파일 작성] # 베이스 이미지 설정 FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-devel # 타임존 설정 ENV TZ=Asia/Seoul RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone # workdir 변경 및 복사 WORKDIR /workspace/sam_annotator_v2 COPY . /workspace/sam_annotator_v2 # 필요 lib 설치 RUN apt-get update RUN apt-get install -y nano RUN apt-get install -y git RUN apt-get install -y libgl1-mesa-glx RUN ap.. 2023. 12. 23. 이전 1 다음