Vx2-3y commited on
Commit
749f574
·
1 Parent(s): fcd441c

Force clean rebuild and pip upgrade for supabase integration fix

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -16,7 +16,9 @@ RUN apt-get update && apt-get install -y \
16
 
17
  # Install Python dependencies
18
  COPY requirements.txt .
19
- RUN pip install --upgrade pip && pip install -r requirements.txt
 
 
20
 
21
  # Copy application code
22
  COPY . .
 
16
 
17
  # Install Python dependencies
18
  COPY requirements.txt .
19
+ # Force rebuild for clean supabase install
20
+ RUN pip install --upgrade pip
21
+ RUN pip install -r requirements.txt
22
 
23
  # Copy application code
24
  COPY . .