Create the .cache folder for bugzilla to store its info

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2019-12-06 12:42:55 +01:00 committed by Nils Philippsen
parent c2e99dbdfa
commit b6124b370c

View file

@ -5,7 +5,8 @@ LABEL maintainer "Pierre-Yves Chibon <pingou@pingoured.fr>"
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