blob: 67a0f8f35119a21c46cd2b29716868c850b6b2a4 [file] [log] [blame]
Alexc7f187c2022-04-28 10:02:27 -05001FROM xrally/xrally-openstack:2.1.0
2
3MAINTAINER Alex Savatieiev (a.savex@gmail.com)
4
5WORKDIR /rally
6RUN sudo apt-get update && \
7 sudo apt-get install -y wget curl git
8
9RUN git clone https://github.com/Mirantis/rally-plugins.git && \
10 cd rally-plugins/ && \
11 pip3 install .
12
13ENTRYPOINT ["bash"]
14