Alex | c7f187c | 2022-04-28 10:02:27 -0500 | [diff] [blame] | 1 | FROM xrally/xrally-openstack:2.1.0 |
| 2 | |
| 3 | MAINTAINER Alex Savatieiev (a.savex@gmail.com) |
| 4 | |
| 5 | WORKDIR /rally |
Alex | 1a21667 | 2022-05-25 12:40:55 -0500 | [diff] [blame] | 6 | RUN mkdir /rally/rally-files && \ |
| 7 | sudo apt-get update && \ |
Alex | c7f187c | 2022-04-28 10:02:27 -0500 | [diff] [blame] | 8 | sudo apt-get install -y wget curl git |
| 9 | |
| 10 | RUN git clone https://github.com/Mirantis/rally-plugins.git && \ |
| 11 | cd rally-plugins/ && \ |
Alex | 1a21667 | 2022-05-25 12:40:55 -0500 | [diff] [blame] | 12 | pip3 install . && \ |
| 13 | cd /rally |
| 14 | |
| 15 | COPY ./rally-files/* /rally/rally-files/ |
Alex | c7f187c | 2022-04-28 10:02:27 -0500 | [diff] [blame] | 16 | |
| 17 | ENTRYPOINT ["bash"] |
| 18 | |