Spaces:
Sleeping
Sleeping
Claude Code Claude Opus 4.6 commited on
Commit ·
2f2615b
1
Parent(s): a5fe23c
Claude Code: fix missing error_handlers.py in Docker build
Browse files- Added COPY error_handlers.py to Dockerfile to fix ModuleNotFoundError
- This file was being imported by app.py but wasn't copied to container
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -12,6 +12,7 @@ COPY requirements.txt .
|
|
| 12 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 13 |
|
| 14 |
COPY app.py .
|
|
|
|
| 15 |
COPY openclaw.json .
|
| 16 |
COPY openclaw/.openclaw /app/openclaw
|
| 17 |
COPY static/ /app/static/
|
|
|
|
| 12 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 13 |
|
| 14 |
COPY app.py .
|
| 15 |
+
COPY error_handlers.py .
|
| 16 |
COPY openclaw.json .
|
| 17 |
COPY openclaw/.openclaw /app/openclaw
|
| 18 |
COPY static/ /app/static/
|