diff options
Diffstat (limited to 'containers')
-rw-r--r-- | containers/cirrus-run/Dockerfile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/containers/cirrus-run/Dockerfile b/containers/cirrus-run/Dockerfile index d38c409..9d6d26a 100644 --- a/containers/cirrus-run/Dockerfile +++ b/containers/cirrus-run/Dockerfile @@ -1,4 +1,10 @@ FROM centos:8 -RUN dnf install -y python3 && \ - pip3 install cirrus-run==0.2.0 +RUN dnf install -y git python3 python3-jinja2 python3-requests && \ + git clone https://github.com/sio/cirrus-run.git /src && \ + cd /src && \ + python3 setup.py build && \ + python3 setup.py test && \ + python3 setup.py install --prefix /usr && \ + cd / && \ + rm -rf /src |