From aa0e93f8f827df07455900bc4f857d24f2ccc182 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Fri, 6 Dec 2019 14:00:58 +0100 Subject: [PATCH] Specify that the HOME is /tmp in the container Signed-off-by: Pierre-Yves Chibon --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 718f94e..c144842 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,5 @@ RUN dnf -y install python3-defusedxml python3-bugzilla python3-fedora \ && mkdir /.cache COPY . /code +ENV HOME=/tmp RUN cd /code && python3 setup.py install