Remove --no-cache from docker build to cache Whisper model
Some checks failed
Deploy to Server / deploy (push) Failing after 16m58s

Docker layer caching will now preserve the Whisper model download step,
avoiding 1.5GB download on every deployment.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
kihong.kim
2026-01-04 20:38:19 +09:00
parent d393b911f7
commit 4aa282c11a
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ jobs:
git reset --hard origin/main
echo "=== Rebuilding Docker containers ==="
docker compose build --no-cache
docker compose build
echo "=== Restarting containers ==="
docker compose down

View File

@@ -27,7 +27,7 @@ log "Git pull completed"
# Rebuild and restart containers
log "Rebuilding Docker containers..."
docker compose -f "$COMPOSE_FILE" build --no-cache
docker compose -f "$COMPOSE_FILE" build
log "Restarting containers..."
docker compose -f "$COMPOSE_FILE" down