From 96526cd53dcd9e830cf83c4937d9b0ea455c56a6 Mon Sep 17 00:00:00 2001 From: Piotr Dec Date: Thu, 4 Dec 2025 19:42:34 +0100 Subject: [PATCH] fix: install dbus --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d10579b..88cac56 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,8 @@ RUN --mount=type=cache,target=/root/.cache/uv \ FROM python:3.12-alpine3.22 RUN apk update --no-cache \ - && apk add --no-cache git + && apk add --no-cache git \ + dbus-python COPY --from=builder --chown=app:app /app/.venv /app/.venv COPY --from=builder --chown=app:app /app/src /app/src