from fastapi import FastAPI app = FastAPI() @app.get("/") def health(): return {"status": "ok", "message": "Docker Space is running"}