feat(infrastructure): rootless container

This commit is contained in:
2025-10-05 20:57:28 +02:00
parent a940e257ee
commit c45ecbc5bc

View File

@@ -1,5 +1,9 @@
FROM python:3.11-slim
WORKDIR /app
RUN useradd -m appuser
USER appuser
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .