From 4287625f0c05d3c8c4193c3f1fb3ad3ede20b0ef Mon Sep 17 00:00:00 2001 From: Giles Knap Date: Mon, 12 Feb 2024 10:59:46 +0000 Subject: [PATCH] set XDG_RUNTIME_DIR in runtime container --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 66a6fbe..65deab6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ COPY --from=build /venv/ /venv/ ENV PATH=/venv/bin:$PATH +ENV XDG_RUNTIME_DIR=/tmp/runtime-:$USER # change this entrypoint if it is not the same as the repo ENTRYPOINT ["dls-pmac-control"]