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

Uninstall old/conflicting supabase dependencies before install to fix proxy error

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -16,6 +16,8 @@ RUN apt-get update && apt-get install -y \
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
 
16
 
17
  # Install Python dependencies
18
  COPY requirements.txt .
19
+ # Uninstall any old/conflicting supabase dependencies
20
+ RUN pip uninstall -y supabase postgrest-py gotrue || true
21
  # Force rebuild for clean supabase install
22
  RUN pip install --upgrade pip
23
  RUN pip install -r requirements.txt