Initial commit - podman-mvp net na toevoegen cpu en mem kolommen

This commit is contained in:
kodi
2026-02-18 08:17:27 +01:00
commit 62e195c59e
56 changed files with 22164 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
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 tests/ ./tests/
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]