Add rsync to dockerfile

This commit is contained in:
Sebastian Raschka 2024-04-03 20:28:02 -05:00 committed by GitHub
parent 3829ccdb34
commit a940373a14
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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/*