diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5a91372 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +# This Dockerfile is used to build the distgit-bugzilla-sync service on Openshift +FROM fedora:31 + +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 + +COPY . /code +RUN cd /code && python3 setup.py install