mirror of
https://github.com/open-webui/terminals.git
synced 2026-07-22 04:05:25 -04:00
14 lines
223 B
Docker
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"]
|