From a940373a14632ef97577d3f3edb8056aa0de0fd5 Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Wed, 3 Apr 2024 20:28:02 -0500 Subject: [PATCH] Add rsync to dockerfile --- .devcontainer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 65829a3..6cfd708 100644 --- a/.devcontainer/Dockerfile +++ b/.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/*