소스 검색

Add rsync to dockerfile

Sebastian Raschka 1 년 전
부모
커밋
a940373a14
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      .devcontainer/Dockerfile

+ 1 - 0
.devcontainer/Dockerfile

@@ -2,6 +2,7 @@ FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime
 
 RUN apt-get update && \
     apt-get upgrade -y && \
+    apt-get install -y rsync && \
     apt-get install -y git && \
     rm -rf /var/lib/apt/lists/*