feat (ui): Light/Dark Theme added

This commit is contained in:
kodi
2026-03-03 15:17:52 +01:00
parent 3a80ba09af
commit 1d5bdd5089
4 changed files with 255 additions and 81 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM docker.io/library/python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y curl systemd && rm -rf /var/lib/apt/lists/*
RUN pip install fastapi uvicorn requests-unixsocket pyyaml pytest httpx
COPY app.py .
COPY app_images.py .
COPY app_files.py .
COPY app_networks.py .
COPY app_pods.py .
COPY app_containers.py .
COPY app_system.py .
COPY common.py .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]