From 33d5f774596ce3386a9f7aa8ea0835b60d53cb9e Mon Sep 17 00:00:00 2001 From: coder3101 Date: Wed, 15 Jul 2026 00:53:32 +0530 Subject: [PATCH] Fix Dockerfile: install python3.11-venv --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bf79abc..ec38a59 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ FROM nvidia/cuda:12.4.1-runtime-ubuntu22.04 AS base SHELL ["/bin/bash", "-c"] RUN apt-get update && apt-get install -y --no-install-recommends \ - python3.11 python3.11-dev python3-pip python3-venv \ + python3.11 python3.11-dev python3-pip python3.11-venv \ git curl ca-certificates \ && rm -rf /var/lib/apt/lists/*