From cd8bb5523953f8423a54111a1387be11ce64f729 Mon Sep 17 00:00:00 2001 From: Bahadir Ciloglu Date: Sat, 1 Nov 2025 16:49:55 +0300 Subject: [PATCH] Fix Docker build to exclude models from image - Update .dockerignore to exclude entire models/ directory - Exclude input/ directory as well - Models will now be loaded from RunPod network storage only - Significantly reduce Docker image size and build time --- .dockerignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 50cd0ae9a..f06eea77a 100644 --- a/.dockerignore +++ b/.dockerignore @@ -60,12 +60,13 @@ tmp/ *.tmp # Large model files (will be mounted from network storage) -models/*/ +models/ !models/.gitkeep # Output files output/ outputs/ +input/ # Cache .cache/