Spaces:
Sleeping
Sleeping
Commit ·
b37f2fb
1
Parent(s): 6973475
Update 2026-03-25 14:45:33
Browse files- .claude/worktrees/jolly-pasteur +0 -1
- Dockerfile +3 -0
.claude/worktrees/jolly-pasteur
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
Subproject commit 06e9048746065dfb5fb39450debc6a45ea37c2e6
|
|
|
|
|
|
Dockerfile
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
|
|
|
|
|
|
|
|
|
|
| 3 |
# HuggingFace Spaces requires non-root user with UID 1000
|
| 4 |
RUN useradd -m -u 1000 user
|
| 5 |
USER user
|
|
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
|
| 3 |
+
# Install system dependencies required by LightGBM (OpenMP runtime)
|
| 4 |
+
RUN apt-get update && apt-get install -y --no-install-recommends libgomp1 && rm -rf /var/lib/apt/lists/*
|
| 5 |
+
|
| 6 |
# HuggingFace Spaces requires non-root user with UID 1000
|
| 7 |
RUN useradd -m -u 1000 user
|
| 8 |
USER user
|