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 | ||||
6 | RUN sudo apt-get update && \ | ||||
7 | sudo apt-get install -y wget curl git | ||||
8 | |||||
9 | RUN git clone https://github.com/Mirantis/rally-plugins.git && \ | ||||
10 | cd rally-plugins/ && \ | ||||
11 | pip3 install . | ||||
12 | |||||
13 | ENTRYPOINT ["bash"] | ||||
14 |