Spaces:
Sleeping
Sleeping
Commit ·
f3a54eb
1
Parent(s): e2fa5a7
Fix: Copy all Python files in Dockerfile
Browse files- Dockerfile +2 -4
Dockerfile
CHANGED
|
@@ -6,10 +6,8 @@ WORKDIR /app
|
|
| 6 |
COPY requirements.txt .
|
| 7 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 8 |
|
| 9 |
-
# Copy
|
| 10 |
-
COPY
|
| 11 |
-
COPY supabase_client.py .
|
| 12 |
-
COPY prompts.py .
|
| 13 |
|
| 14 |
# Expose port
|
| 15 |
EXPOSE 7860
|
|
|
|
| 6 |
COPY requirements.txt .
|
| 7 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 8 |
|
| 9 |
+
# Copy all Python files
|
| 10 |
+
COPY *.py .
|
|
|
|
|
|
|
| 11 |
|
| 12 |
# Expose port
|
| 13 |
EXPOSE 7860
|