From 7adf3a504f5afa63e483d0a727067c58eb0e2f4d Mon Sep 17 00:00:00 2001 From: MAHaines Date: Mon, 14 Jul 2025 17:10:34 -0500 Subject: [PATCH] revert cee56ff13423464ccef07146f7d405587ea641d5 revert Fix deploy.sh - remove invalid CUDA image pull, let Dockerfiles handle it --- deploy.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 886d022..468fa2b 100644 --- a/deploy.sh +++ b/deploy.sh @@ -108,7 +108,10 @@ create_directories() { pull_images() { print_status "Pulling Docker images..." - # Pull base images (skip CUDA - let service Dockerfiles handle it) + # Pull NVIDIA CUDA base image for GPU services + docker pull nvidia/cuda:11.8-runtime-ubuntu20.04 + + # Pull other base images docker pull postgres:15-alpine docker pull redis:7-alpine docker pull nginx:alpine