From dba71b35379b5a20caf997bb843902f2a85876f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Jes=C3=BAs=20Chaves?= <48441811+antoniochavesgarcia@users.noreply.github.com> Date: Thu, 1 Feb 2024 15:04:18 +0100 Subject: [PATCH] fix: Changed runtime image to devel. Also added zip package. --- jupyterhub/base-cuda12.2-cudnn8-py3.11/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jupyterhub/base-cuda12.2-cudnn8-py3.11/Dockerfile b/jupyterhub/base-cuda12.2-cudnn8-py3.11/Dockerfile index 02350c0..6ba995e 100644 --- a/jupyterhub/base-cuda12.2-cudnn8-py3.11/Dockerfile +++ b/jupyterhub/base-cuda12.2-cudnn8-py3.11/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1.3-labs -FROM nvidia/cuda:12.2.2-cudnn8-runtime-ubuntu22.04 +FROM nvidia/cuda:12.2.2-cudnn8-devel-ubuntu22.04 ARG DEBIAN_FRONTEND=noninteractive @@ -26,6 +26,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ tini \ wget \ dnsutils \ + unzip \ && \ apt-get clean && rm -rf /var/lib/apt/lists/* && \ echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && \ @@ -95,4 +96,4 @@ RUN <> ~/.bashrc EOF -WORKDIR "${HOME}" \ No newline at end of file +WORKDIR "${HOME}"