1 parent 0706113 commit 5b37d23Copy full SHA for 5b37d23
1 file changed
docker/Dockerfile
@@ -11,7 +11,6 @@ WORKDIR /app
11
# ── Install Python deps ───────────────────────────────────────────────────────
12
COPY requirements.txt .
13
RUN pip install --no-cache-dir -r requirements.txt
14
-
15
# ── Copy source ───────────────────────────────────────────────────────────────
16
COPY configs/ ./configs/
17
COPY data/ ./data/
@@ -21,7 +20,6 @@ COPY explainability/ ./explainability/
21
20
COPY fairness/ ./fairness/
22
COPY report_generation/ ./report_generation/
23
COPY api/ ./api/
24
25
# ── Non-root user (HF Spaces requirement) ────────────────────────────────────
26
RUN useradd -m -u 1000 appuser && chown -R appuser /app
27
USER appuser
0 commit comments