Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -185,7 +185,8 @@ urlpatterns += staticfiles_urlpatterns()\n\
|
|
185 |
# Debug info\n\
|
186 |
print(f"Static URL: {settings.STATIC_URL}")\n\
|
187 |
print(f"Static Root: {settings.STATIC_ROOT}")\n\
|
188 |
-
|
|
|
189 |
' > /app/vlamy_ocr/urls_no_auth.py
|
190 |
|
191 |
# Ensure static directories exist and collect static files
|
|
|
185 |
# Debug info\n\
|
186 |
print(f"Static URL: {settings.STATIC_URL}")\n\
|
187 |
print(f"Static Root: {settings.STATIC_ROOT}")\n\
|
188 |
+
static_dirs = getattr(settings, "STATICFILES_DIRS", [])\n\
|
189 |
+
print(f"Static Dirs: {static_dirs}")\n\
|
190 |
' > /app/vlamy_ocr/urls_no_auth.py
|
191 |
|
192 |
# Ensure static directories exist and collect static files
|