From 24f90df34aaf2221eb8ce781cec29f8f8728044c Mon Sep 17 00:00:00 2001 From: leafee98 Date: Wed, 5 Jul 2023 20:52:34 +0800 Subject: [PATCH] add zip,unzip,zstd and imagemagick --- cuda/Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cuda/Dockerfile b/cuda/Dockerfile index 7921827..1edfec9 100644 --- a/cuda/Dockerfile +++ b/cuda/Dockerfile @@ -46,7 +46,12 @@ RUN true \ && sed -i 's/^/export /' /etc/profile.d/00-nvidia.sh \ \ && apt update \ - && apt install --yes ssh tini zsh netcat file git locales python3 python3-pip \ + && apt install --yes \ + ssh tini zsh locales \ + netcat file git \ + python3 python3-pip \ + zip unzip zstd \ + imagemagick \ && apt clean \ && rm -rf /var/lib/apt/lists/* \ \