fix: add iputils-ping to Docker image and bump version to 1.3.2

ping was missing from python:3.13-slim — ping check method always
returned offline on fresh Docker installs.
This commit is contained in:
Pouzor
2026-03-27 14:59:10 +01:00
parent 059bb3daa7
commit 861d2822b9
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ async def lifespan(app: FastAPI) -> AsyncGenerator[None, None]:
app = FastAPI(
title="Homelable API",
version="1.3.1",
version="1.3.2",
lifespan=lifespan,
)