Vx2-3y
commited on
Commit
·
749f574
1
Parent(s):
fcd441c
Force clean rebuild and pip upgrade for supabase integration fix
Browse files- 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 |
-
|
|
|
|
|
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 . .
|