kshitijthakkar commited on
Commit
ec30578
·
1 Parent(s): 3a7759f

chore: Update Gradio to 6.0.0 stable release

Browse files

Upgraded from 6.0.0.dev4 to 6.0.0 stable (released Nov 21, 2025)

Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -20,10 +20,10 @@ RUN apt-get update && apt-get install -y \
20
  # Copy requirements first (for better caching)
21
  COPY requirements.txt .
22
 
23
- # Fresh install of Gradio 6 as recommended by Gradio team
24
  # Install in a single command to avoid conflicts
25
  RUN pip install --no-cache-dir --upgrade pip && \
26
- pip install --no-cache-dir "gradio[mcp,oauth]==6.0.0.dev4" && \
27
  pip install --no-cache-dir -r requirements.txt
28
 
29
  # Copy application code
 
20
  # Copy requirements first (for better caching)
21
  COPY requirements.txt .
22
 
23
+ # Fresh install of Gradio 6 stable (released Nov 21, 2025)
24
  # Install in a single command to avoid conflicts
25
  RUN pip install --no-cache-dir --upgrade pip && \
26
+ pip install --no-cache-dir "gradio[mcp,oauth]==6.0.0" && \
27
  pip install --no-cache-dir -r requirements.txt
28
 
29
  # Copy application code