Spaces:
Paused
Paused
Nawaz-khan-droid commited on
Commit ·
aa6df4b
1
Parent(s): 76b1206
Fix Dockerfile paths for HF Spaces (subdirectory context)
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -11,12 +11,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
| 13 |
# Install Python deps
|
| 14 |
-
COPY requirements.txt .
|
| 15 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 16 |
RUN playwright install chromium --with-deps 2>/dev/null || true
|
| 17 |
|
| 18 |
# Copy application
|
| 19 |
-
COPY
|
| 20 |
|
| 21 |
# Expose FastAPI port
|
| 22 |
EXPOSE 7860
|
|
|
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
| 13 |
# Install Python deps
|
| 14 |
+
COPY seo-autopilot/requirements.txt .
|
| 15 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 16 |
RUN playwright install chromium --with-deps 2>/dev/null || true
|
| 17 |
|
| 18 |
# Copy application
|
| 19 |
+
COPY seo-autopilot/ .
|
| 20 |
|
| 21 |
# Expose FastAPI port
|
| 22 |
EXPOSE 7860
|