From b6124b370cba5204da67524bb377823e66f3c764 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Fri, 6 Dec 2019 12:42:55 +0100 Subject: [PATCH] Create the .cache folder for bugzilla to store its info Signed-off-by: Pierre-Yves Chibon --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5a91372..718f94e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,8 @@ LABEL maintainer "Pierre-Yves Chibon " RUN dnf -y install python3-defusedxml python3-bugzilla python3-fedora \ python3-pyyaml python3-requests python3-toml python3-dogpile-cache \ - && dnf clean all + && dnf clean all \ + && mkdir /.cache COPY . /code RUN cd /code && python3 setup.py install