Files
2026-03-07 16:55:21 -07:00

14 lines
223 B
Docker

FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir \
kopf>=1.37.0 \
kubernetes>=31.0.0
COPY handler.py /app/handler.py
USER 65534:65534
ENTRYPOINT ["kopf", "run", "/app/handler.py", "--verbose"]