From 2e4c0c65997eb0225d01b2f6347719fd8daea5c9 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 29 May 2016 23:14:10 +0200 Subject: [PATCH] Run dbus-uuidgen in Ubuntu Wily Dockerfile Otherwise the tests will fail with: INVALID: process 975: D-Bus library appears to be incorrectly set up; failed to read machine uuid: UUID file '/etc/machine-id' should contain a hex string of length 32, not length 0, with no other text INVALID: See the manual page for dbus-uuidgen to correct this issue. --- misc/docker/ubuntu-wily/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/misc/docker/ubuntu-wily/Dockerfile b/misc/docker/ubuntu-wily/Dockerfile index 434e6ab5f..7943dddc2 100644 --- a/misc/docker/ubuntu-wily/Dockerfile +++ b/misc/docker/ubuntu-wily/Dockerfile @@ -18,6 +18,8 @@ RUN apt-get -y update && \ language-pack-en \ libjs-pdf +RUN dbus-uuidgen --ensure + RUN useradd user && mkdir /home/user && chown -R user:users /home/user USER user WORKDIR /home/user