From d3ff38174c548170091207ee8c0a34621c9efc36 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Tue, 5 Aug 2025 20:19:02 -0700 Subject: [PATCH] fix: update Dockerfile to reflect model download instead of extraction --- examples/simple-deployment/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/simple-deployment/Dockerfile b/examples/simple-deployment/Dockerfile index 0c9bf97e..4648da8a 100644 --- a/examples/simple-deployment/Dockerfile +++ b/examples/simple-deployment/Dockerfile @@ -14,8 +14,8 @@ RUN npm ci # Copy application source COPY . . -# 🎯 AUTOMATIC MODEL EXTRACTION - No configuration needed! -RUN npm run extract-models +# 🎯 AUTOMATIC MODEL DOWNLOAD - No configuration needed! +RUN npm run download-models # Build the application RUN npm run build @@ -32,7 +32,7 @@ RUN npm ci --only=production --omit=optional && npm cache clean --force # Copy built application COPY --from=builder /app/dist ./dist -# 🎯 COPY AUTO-EXTRACTED MODELS - Works everywhere! +# 🎯 COPY DOWNLOADED MODELS - Works everywhere! COPY --from=builder /app/models ./models # Create non-root user for security