From 8f1768196983eb7247be3042f3dd7479d90c3f7a Mon Sep 17 00:00:00 2001 From: Fangjun Kuang Date: Thu, 27 Jul 2023 18:31:42 +0800 Subject: [PATCH] small fixes --- docker/torch1.13.0-cuda11.6-cudnn8.dockerfile | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/docker/torch1.13.0-cuda11.6-cudnn8.dockerfile b/docker/torch1.13.0-cuda11.6-cudnn8.dockerfile index feec2e38f..e93cfe807 100644 --- a/docker/torch1.13.0-cuda11.6-cudnn8.dockerfile +++ b/docker/torch1.13.0-cuda11.6-cudnn8.dockerfile @@ -1,5 +1,29 @@ FROM pytorch/pytorch:1.13.0-cuda11.6-cudnn8-runtime +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + curl \ + vim \ + libssl-dev \ + autoconf \ + automake \ + bzip2 \ + ca-certificates \ + ffmpeg \ + g++ \ + gfortran \ + git \ + libtool \ + make \ + patch \ + sox \ + subversion \ + unzip \ + valgrind \ + wget \ + zlib1g-dev \ + && rm -rf /var/lib/apt/lists/* + # Install dependencies RUN pip install --no-cache-dir \ torchaudio==0.13.0+cu116 -f https://download.pytorch.org/whl/torch_stable.html \